split testing into multiple tasks in travis
This commit is contained in:
23
.travis.yml
23
.travis.yml
@@ -16,7 +16,28 @@ install:
|
||||
- make
|
||||
- python setup.py install
|
||||
- cd ..
|
||||
env:
|
||||
TASK=ARITHMETIC
|
||||
TASK=CRASH
|
||||
TASK=FIXTURE
|
||||
TASK=KLEE
|
||||
TASK=LISTS
|
||||
TASK=ONEOF
|
||||
TASK=OVERFLOW
|
||||
TASK=PRIMES
|
||||
TASK=STREAMINGANDFORMATTING
|
||||
TASK=TAKEOVER
|
||||
script:
|
||||
- pyflakes bin/deepstate/*.py
|
||||
- pyflakes tests/*.py
|
||||
- nosetests --verbose
|
||||
- if [ $TASK = ARITHMETIC ]; then nosetests test_arithmetic ; fi
|
||||
- if [ $TASK = CRASH ]; then nosetests test_crash ; fi
|
||||
- if [ $TASK = FIXTURE ]; then nosetests test_fixture ; fi
|
||||
- if [ $TASK = KLEE ]; then nosetests test_klee ; fi
|
||||
- if [ $TASK = LISTS ]; then nosetests test_lists ; fi
|
||||
- if [ $TASK = ONEOF ]; then nosetests test_oneof ; fi
|
||||
- if [ $TASK = OVERFLOW ]; then nosetests test_overflow ; fi
|
||||
- if [ $TASK = PRIMES ]; then nosetests test_primes ; fi
|
||||
- if [ $TASK = STREAMINGANDFORMATTING ]; then nosetests test_streamingandformatting ; fi
|
||||
- if [ $TASK = TAKEOVER ]; then nosetests test_takeover ; fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user