Travis should not fail if this line fails

This commit is contained in:
Simon Willison 2019-02-23 19:54:02 -08:00
commit 7c20e60685

View file

@ -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: