Fix python dependency detection
Some checks failed
/ test (push) Failing after 1m49s
/ deploy (push) Has been skipped

This commit is contained in:
lagertonne 2024-11-11 21:36:02 +01:00
parent 33631f4f2d
commit 8c8cabfda1

View file

@ -13,13 +13,13 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install needed python modules
cache-dependency-path: '**/requirements.prod.txt'
- name: Install dependencies
working-directory: core
run: cd core && pip3 install -r requirements.prod.txt
run: pip3 install -r requirements.prod.txt
- name: Run django tests
working-directory: core
run: python3 -m manage.py test
run: python3 manage.py test
deploy:
needs: [test]