We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de52626 commit 954247bCopy full SHA for 954247b
.gitignore
@@ -12,3 +12,5 @@ __pycache__
12
.tox
13
14
.env*
15
+
16
+.direnv/*
.tool-versions
@@ -0,0 +1 @@
1
+python 3.13.2
README.md
@@ -58,15 +58,21 @@ See the [GitHub 'enhancement' issues](https://github.com/buildkite/test-collecto
58
59
## ⚒ Developing
60
61
-After cloning the repository, install the dependencies:
+After cloning the repository, setup virtual environment (please skip this step if you are using `direnv`):
62
63
+```bash
64
+python -m venv .venv && source .venv/bin/activate
65
```
66
67
+then install the dependencies:
68
69
70
pip install -e '.[dev]'
71
72
73
And run the tests:
74
-```
75
76
pytest
77
78
0 commit comments