From 1cd0f3a2489df78f04769a2b3aae08e07149ebe8 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sun, 17 Apr 2022 16:58:15 -0700 Subject: [PATCH] Run pytype test with --print-stderr This was the first step to figure out the issue in #7635. The stack trace was still pretty mysterious, but it helps more than just "AssertionError". --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 712942ffa873..750e4e3482f9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -47,7 +47,7 @@ jobs: with: python-version: 3.9 - run: pip install -r requirements-tests.txt - - run: ./tests/pytype_test.py + - run: ./tests/pytype_test.py --print-stderr mypy: name: Run mypy against the stubs