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 cfa700b
Show file tree
Hide file tree
Showing 2 changed files with 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

from __future__ import absolute_import, division, print_function


__metaclass__ = type


Expand Down

0 comments on commit cfa700b

Please sign in to comment.