From 038dc6c629450e78dd7fe9d9754f9b7ca2dc1e48 Mon Sep 17 00:00:00 2001 From: Dmitry Ivanov Date: Thu, 8 Jul 2021 21:13:42 +0300 Subject: [PATCH] Symlink Pipfile (& Pipfile.lock) at the top level When executed, pipenv shell creates a fresh Pipfile if none is found in the current directory. This is confusing, hence the patch to symlink it at the top level, which is a good starting point for various commands. --- Pipfile | 1 + Pipfile.lock | 1 + 2 files changed, 2 insertions(+) create mode 120000 Pipfile create mode 120000 Pipfile.lock diff --git a/Pipfile b/Pipfile new file mode 120000 index 0000000000..171a35c9e0 --- /dev/null +++ b/Pipfile @@ -0,0 +1 @@ +./test_runner/Pipfile \ No newline at end of file diff --git a/Pipfile.lock b/Pipfile.lock new file mode 120000 index 0000000000..8ca921bdc2 --- /dev/null +++ b/Pipfile.lock @@ -0,0 +1 @@ +./test_runner/Pipfile.lock \ No newline at end of file