Fix check

This commit is contained in:
Andras Schmelczer 2022-06-25 16:20:21 +02:00
parent 86e855d329
commit 497ccca8e6

View file

@ -28,9 +28,7 @@ jobs:
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools pytest pytest-cov pytest-subtests pytest-asyncio
(pip install --editable .) || true
(test -f requirements.txt && pip install -r requirements.txt --upgrade) || true
(test -f dev-requirements.txt && pip install -r dev-requirements.txt --upgrade) || true
pip install .
- name: Check code and formatting
run: scripts/check-python.sh .
@ -58,7 +56,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt --upgrade
pip install .
- name: Download test results
uses: actions/download-artifact@v2