From 2b5902a15857287066108fdd204a790b3cca8887 Mon Sep 17 00:00:00 2001 From: David Bieber Date: Fri, 22 Jan 2021 10:01:09 -0800 Subject: [PATCH] Travis pytype bug fix PiperOrigin-RevId: 353263304 Change-Id: Ic4d40ba1aa60eb1c4433cc36e0fdb22af561efdf --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index de9d1c59..a7193ca1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,8 +19,7 @@ script: - pip install ipython - python -m pytest # Now run the tests with IPython. - pylint fire --ignore=test_components_py3.py,parser_fuzz_test.py,console - - if [[ $TRAVIS_PYTHON_VERSION == 2.7 || \ - $TRAVIS_PYTHON_VERSION == 3.7 ]]; then + - if [[ $TRAVIS_PYTHON_VERSION == 2.7 || $TRAVIS_PYTHON_VERSION == 3.7 ]]; then pip install pytype; fi # Run type-checking, excluding files that define or use py3 features in py2.