Fix check
This commit is contained in:
parent
86e855d329
commit
497ccca8e6
1 changed files with 2 additions and 4 deletions
6
.github/workflows/check.yml
vendored
6
.github/workflows/check.yml
vendored
|
|
@ -28,9 +28,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
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
|
||||||
(pip install --editable .) || true
|
pip install .
|
||||||
(test -f requirements.txt && pip install -r requirements.txt --upgrade) || true
|
|
||||||
(test -f dev-requirements.txt && pip install -r dev-requirements.txt --upgrade) || true
|
|
||||||
|
|
||||||
- name: Check code and formatting
|
- name: Check code and formatting
|
||||||
run: scripts/check-python.sh .
|
run: scripts/check-python.sh .
|
||||||
|
|
@ -58,7 +56,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -r requirements.txt --upgrade
|
pip install .
|
||||||
|
|
||||||
- name: Download test results
|
- name: Download test results
|
||||||
uses: actions/download-artifact@v2
|
uses: actions/download-artifact@v2
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue