install dependencies before running tests

This commit is contained in:
Gonçalo Valério 2021-01-20 17:45:23 +00:00
parent 7f2ef91be6
commit 5df0778388
1 changed files with 3 additions and 0 deletions

View File

@ -20,6 +20,9 @@ jobs:
with:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: pip install -r requirements_test.txt
- name: Run Tests
run: tox -e py${{ matrix.python_version }}-${{ matrix.django_version }}