From d7bbc9ea67ec7805c9885a6466f48a8efc7075af Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Thu, 28 Jan 2021 05:22:55 -0800 Subject: [PATCH] Re-enable stubtest (#4979) --- .github/workflows/tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c817d3547..a0a4a98a4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -84,7 +84,7 @@ jobs: - run: ./tests/mypy_test_suite.py stubtest: - name: Check stubs with stubtest + name: Check stdlib with stubtest runs-on: ${{ matrix.os }} strategy: matrix: @@ -101,8 +101,6 @@ jobs: - name: Install dependencies run: | python -m pip install -U pip - pip install -U git+git://github.com/python/mypy@24fdf343 + pip install -U git+git://github.com/python/mypy@master - name: Run stubtest run: python tests/stubtest_test.py --ignore-unused-whitelist - # TODO: re-enable this when possible. - continue-on-error: true