Skip to content

Commit 6b1bc74

Browse files
committed
Added killerbunny dev install to yaml file fix failing tests. Deleted unused directory (jpath). Deleted unused file main.py.
1 parent 184cabd commit 6b1bc74

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
lines changed

.github/workflows/python-tests.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ jobs:
1616
uses: actions/setup-python@v4
1717
with:
1818
python-version: '3.12'
19-
19+
2020
- name: Install dependencies
2121
run: |
2222
python -m pip install --upgrade pip
23-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
24-
pip install pytest
23+
# Install the package in development mode
24+
pip install -e .
25+
# Install test dependencies
26+
pip install .[test]
27+
2528
2629
- name: Run tests
2730
run: |
28-
pytest
31+
pytest -v

killerbunny/jpath/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)