From b09e528f6418154d0bc3390102f510d62dc108ba Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Thu, 25 Nov 2021 20:08:20 +0100 Subject: [PATCH] Remove black/isort checks from CI (#6376) --- .github/workflows/tests.yml | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7a4172c88..6bf959aaa 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,24 +37,6 @@ jobs: - run: pip install $(grep flake8 requirements-tests-py3.txt) - run: flake8 - black: - name: Check formatting with black - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - - run: pip install $(grep black requirements-tests-py3.txt) - - run: black --check --diff scripts stdlib stubs tests - - isort: - name: Check imports with isort - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 - - run: pip install $(grep isort requirements-tests-py3.txt) - - run: isort --check-only --diff scripts stdlib stubs tests - pytype: name: Run pytype against the stubs runs-on: ubuntu-latest