Disable the essentially flaky arithmetic test

It frequently times out on Travis, and doesn't really add a lot to our testing
This commit is contained in:
Alex Groce
2019-05-30 14:35:31 -07:00
committed by GitHub
parent d525674d8a
commit 043bf16ddb

View File

@@ -19,7 +19,6 @@ install:
- sudo make install
- cd ..
env:
- TASK=ARITHMETIC
- TASK=CRASH
- TASK=FIXTURE
- TASK=KLEE
@@ -33,7 +32,6 @@ env:
script:
- pyflakes bin/deepstate/*.py
- pyflakes tests/*.py
- if [ $TASK = ARITHMETIC ]; then nosetests3 tests/test_arithmetic.py ; fi
- if [ $TASK = CRASH ]; then nosetests3 tests/test_crash.py ; fi
- if [ $TASK = FIXTURE ]; then nosetests3 tests/test_fixture.py ; fi
- if [ $TASK = KLEE ]; then nosetests3 tests/test_klee.py ; fi