Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
run: |
docker run --rm -v ${{ github.workspace }}:/app -w /app python:${{ matrix.python-version }} bash -c "
pip install --upgrade pip &&
pip install pytest pytest-cov parameterized mock flake8 &&
pip install pytest pytest-rerunfailures pytest-cov parameterized mock flake8 &&
pip install -r requirements.txt &&
flake8 configcatclient --count --show-source --statistics &&
pytest configcatclienttests
pytest configcatclienttests --reruns 3
"

- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -67,7 +67,7 @@ jobs:
if: ${{ !(matrix.os == 'ubuntu-latest' && contains(fromJSON('["3.5","3.6","3.7"]'), matrix.python-version)) }}
run: |
python -m pip install --upgrade pip
pip install pytest pytest-cov parameterized mock flake8
pip install pytest pytest-rerunfailures pytest-cov parameterized mock flake8
pip install -r requirements.txt

- name: Lint with flake8
Expand All @@ -78,7 +78,7 @@ jobs:

- name: Test
if: ${{ !(matrix.os == 'ubuntu-latest' && contains(fromJSON('["3.5","3.6","3.7"]'), matrix.python-version)) }}
run: pytest configcatclienttests
run: pytest configcatclienttests --reruns 3

coverage:
needs: [test]
Expand Down
Loading