Skip to content
Snippets Groups Projects
Commit 17c1554c authored by Vincent Emonet's avatar Vincent Emonet
Browse files

Fix test workflow

parent d53e08b5
No related branches found
No related tags found
No related merge requests found
...@@ -21,6 +21,12 @@ jobs: ...@@ -21,6 +21,12 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest flake8
pip install .
- name: Check code style with flake8 (lint) - name: Check code style with flake8 (lint)
run: | run: |
# warnings if there are Python syntax errors or undefined names # warnings if there are Python syntax errors or undefined names
...@@ -29,12 +35,6 @@ jobs: ...@@ -29,12 +35,6 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest - name: Test with pytest
run: pytest run: pytest
......
...@@ -25,6 +25,12 @@ jobs: ...@@ -25,6 +25,12 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest flake8
pip install .
- name: Check code style with flake8 (lint) - name: Check code style with flake8 (lint)
run: | run: |
# warnings if there are Python syntax errors or undefined names # warnings if there are Python syntax errors or undefined names
...@@ -33,12 +39,6 @@ jobs: ...@@ -33,12 +39,6 @@ jobs:
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest - name: Test with pytest
run: pytest run: pytest
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment