diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index dd85ef2a5d17..1b9ebb3411e2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,11 +42,6 @@ jobs: - uses: actions/checkout@v2 - name: Initialize submodules run: git submodule update --recursive --init - - name: Lint Python - if: startsWith(matrix.os, 'macOS') - run: | - python3 -m pip install flake8 - python3 -m flake8 . --count --select=E9,F63,F7 --show-source --statistics - uses: actions/cache@v1 env: CACHE_NUMBER: 0 diff --git a/tests/lint/flake8.sh b/tests/lint/flake8.sh index 43ade61c7893..b16d97fce361 100755 --- a/tests/lint/flake8.sh +++ b/tests/lint/flake8.sh @@ -16,5 +16,5 @@ # specific language governing permissions and limitations # under the License. -# Disabled until docker images are rebuilt -# python3 -m flake8 . --count --select=E9,F63,F7 --show-source --statistics + +python3 -m flake8 . --count --select=E9,F63,F7 --show-source --statistics