From 9cd6dab87b8858f4a4c1ea265bc48ed4d51fa6e1 Mon Sep 17 00:00:00 2001 From: Wyatt Stanke Date: Mon, 19 Feb 2024 19:01:51 -0500 Subject: [PATCH] Disable pytype for now --- .github/workflows/test_pr.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_pr.yml b/.github/workflows/test_pr.yml index 7d996d57..cdbfd232 100644 --- a/.github/workflows/test_pr.yml +++ b/.github/workflows/test_pr.yml @@ -55,6 +55,8 @@ jobs: pytype3_10: name: pytype 3.10 runs-on: ubuntu-latest + # google/pytype/1105 + if: false steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -64,8 +66,8 @@ jobs: run: | python --version pip install .[dev] - pip install -q gspread ipython - pytype + pip install -q gspread ipython pytype + pytype . format: name: Check format with black runs-on: ubuntu-latest