We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 184cabd commit 6b1bc74Copy full SHA for 6b1bc74
.github/workflows/python-tests.yaml
@@ -16,13 +16,16 @@ jobs:
16
uses: actions/setup-python@v4
17
with:
18
python-version: '3.12'
19
-
+
20
- name: Install dependencies
21
run: |
22
python -m pip install --upgrade pip
23
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24
- pip install pytest
+ # Install the package in development mode
+ pip install -e .
25
+ # Install test dependencies
26
+ pip install .[test]
27
28
29
- name: Run tests
30
- pytest
31
+ pytest -v
killerbunny/jpath/__init__.py
0 commit comments