Skip to content

Commit 954247b

Browse files
committed
PIE-3504 part 1: lock python version, add venv setup instruction
1 parent de52626 commit 954247b

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ __pycache__
1212
.tox
1313

1414
.env*
15+
16+
.direnv/*

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python 3.13.2

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,21 @@ See the [GitHub 'enhancement' issues](https://github.com/buildkite/test-collecto
5858

5959
## ⚒ Developing
6060

61-
After cloning the repository, install the dependencies:
61+
After cloning the repository, setup virtual environment (please skip this step if you are using `direnv`):
6262

63+
```bash
64+
python -m venv .venv && source .venv/bin/activate
6365
```
66+
67+
then install the dependencies:
68+
69+
```bash
6470
pip install -e '.[dev]'
6571
```
6672

6773
And run the tests:
6874

69-
```
75+
```bash
7076
pytest
7177
```
7278

0 commit comments

Comments
 (0)