@@ -92,35 +92,35 @@ jobs:
92
92
- name : Build docs
93
93
run : make --directory=docs clean_all linkcheck
94
94
95
- flake8-nightly :
96
- runs-on : ubuntu-latest
97
- needs : [pre-commit, docs]
95
+ # flake8-nightly:
96
+ # runs-on: ubuntu-latest
97
+ # needs: [pre-commit, docs]
98
98
99
- steps :
100
- - uses : actions/checkout@v3
101
- - name : Set up Python 3.7
102
- uses : actions/setup-python@v4
103
- with :
104
- python-version : 3.7
105
- - name : Install dependencies
106
- env :
107
- TOX_ENV_NAME : flake8-nightly
108
- run : |
109
- python -m pip install -U pip
110
- python -m pip install -U -r requirements_dev.txt
111
- pip install .
112
- python -m pip install --force-reinstall -U -q git+https://github.com/pycqa/flake8
113
- - name : Show flake8 version
114
- run : |
115
- pip freeze | grep flake8
116
- - name : Run tests
117
- run : |
118
- python -m pytest -vv
119
- - name : Codecov Upload
120
- uses : codecov/codecov-action@v3
121
- with :
122
- file : ./coverage.xml
123
- name : flake8-nightly
99
+ # steps:
100
+ # - uses: actions/checkout@v3
101
+ # - name: Set up Python 3.7
102
+ # uses: actions/setup-python@v4
103
+ # with:
104
+ # python-version: 3.7
105
+ # - name: Install dependencies
106
+ # env:
107
+ # TOX_ENV_NAME: flake8-nightly
108
+ # run: |
109
+ # python -m pip install -U pip
110
+ # python -m pip install -U -r requirements_dev.txt
111
+ # pip install .
112
+ # python -m pip install --force-reinstall -U -q git+https://github.com/pycqa/flake8
113
+ # - name: Show flake8 version
114
+ # run: |
115
+ # pip freeze | grep flake8
116
+ # - name: Run tests
117
+ # run: |
118
+ # python -m pytest -vv
119
+ # - name: Codecov Upload
120
+ # uses: codecov/codecov-action@v3
121
+ # with:
122
+ # file: ./coverage.xml
123
+ # name: flake8-nightly
124
124
125
125
flake8-legacy :
126
126
runs-on : ubuntu-latest
@@ -181,7 +181,7 @@ jobs:
181
181
deploy :
182
182
runs-on : ubuntu-latest
183
183
if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
184
- needs : [test, flake8-nightly, flake8- legacy]
184
+ needs : [test, flake8-legacy]
185
185
steps :
186
186
- uses : actions/checkout@v3
187
187
- name : Set up Python 3.7
0 commit comments