stash
Some checks failed
Test / test (push) Failing after 1m1s

This commit is contained in:
j3d1 2024-12-05 01:31:06 +01:00
parent f7fda52fd0
commit f9012c7963

View file

@ -1,3 +1,4 @@
name: Test
on:
pull_request:
push:
@ -16,6 +17,9 @@ jobs:
- name: Install dependencies
working-directory: core
run: pip3 install -r requirements.dev.txt
- name: Run django tests
- name: Run django tests with coverage
working-directory: core
run: python3 manage.py test
run: coverage run manage.py test
- name: Evaluate coverage
working-directory: core
run: coverage report