From 7c20e60685088d6da0739749305215790ca8375a Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 23 Feb 2019 19:54:02 -0800 Subject: [PATCH] Travis should not fail if this line fails --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5ddb723..3af29a6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,7 @@ script: - pip install -U pip wheel - pip install .[test] # Only run the numpy/pandas tests on Python 3.7: - - python -c "import sys; print(sys.version_info.minor == 7)" | grep True > /dev/null && pip install pandas + - python -c "import sys; print(sys.version_info.minor == 7)" | grep True > /dev/null && pip install pandas || true - pytest cache: