Skip to content

Commit

Permalink
ci: pin down flake8, because 7.0.0 it conflicts with old ansible
Browse files Browse the repository at this point in the history
  • Loading branch information
amarao committed Jan 16, 2024
1 parent e66def6 commit 0ced31e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ jobs:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
pip install flake8==6.1.0 pytest
python -m pip install --upgrade pip
pip install flake8 pytest
pip install -r requirements.txt
- name: Sanity tests with dependencies
run: ansible-test sanity --requirements --python ${{ matrix.python_version }}
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install flake8==6.1.0 pytest
pip install -r requirements.txt
- name: Configure integration tests
run: |
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install flake8==6.1.0 pytest
pip install -r requirements.txt
- name: Configure integration tests
run: |
Expand Down

0 comments on commit 0ced31e

Please sign in to comment.