1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-06-09 19:59:57 +02:00

🐛 Fix tests

This commit is contained in:
Mike Gerber 2024-07-25 13:26:12 +02:00
parent ae650f70a2
commit 03d86ce68a
2 changed files with 3 additions and 2 deletions

View file

@ -10,8 +10,8 @@ jobs:
steps:
- checkout
- run: pip3 install --upgrade pip
- run: pip3 install -r requirements.txt
- run: pip3 install pytest
- run: pip3 install -e .
- run: pip3 install -r requirements-test.txt
- run: pytest
workflows:

View file

@ -4,6 +4,7 @@ pip install -r requirements-test.txt
To run tests:
```
pip install -e .
pytest
```