1
0
Fork 0
mirror of https://github.com/qurator-spk/modstool.git synced 2025-06-10 04:09:56 +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: steps:
- checkout - checkout
- run: pip3 install --upgrade pip - run: pip3 install --upgrade pip
- run: pip3 install -r requirements.txt - run: pip3 install -e .
- run: pip3 install pytest - run: pip3 install -r requirements-test.txt
- run: pytest - run: pytest
workflows: workflows:

View file

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