Update CI

This commit is contained in:
Andras Schmelczer 2022-05-27 12:37:11 +02:00
parent 476b03f1e7
commit 4cb57b69e0

View file

@ -38,7 +38,8 @@ jobs:
run: | run: |
python3 -m pip install --upgrade pip setuptools pytest pytest-cov pytest-subtests pytest-asyncio python3 -m pip install --upgrade pip setuptools pytest pytest-cov pytest-subtests pytest-asyncio
cd ${{ inputs.path_to_project }} cd ${{ inputs.path_to_project }}
python3 -m pip install -r requirements.txt --upgrade (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 (test -f dev-requirements.txt && pip install -r dev-requirements.txt --upgrade) || true
- name: Run tests - name: Run tests