Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ sudo: false

env:
matrix:
- TEST_TARGET=coding
- TEST_TARGET=default TEST_MINIMAL=true
- TEST_TARGET=default
- TEST_TARGET=example
Expand Down Expand Up @@ -118,7 +117,7 @@ install:

script:
- if [[ $TEST_TARGET == 'default' ]]; then
python -m iris.tests.runner --default-tests --system-tests --print-failed-images --num-processors=3;
python -m iris.tests.runner --default-tests --system-tests --coding-tests --print-failed-images --num-processors=3;
fi
- if [[ $TEST_TARGET == 'example' ]]; then
python -m iris.tests.runner --example-tests --print-failed-images --num-processors=3;
Expand Down Expand Up @@ -161,9 +160,3 @@ script:
cd $INSTALL_DIR/docs/iris/src/whatsnew;
python aggregate_directory.py --checkonly;
fi
- if [[ $TEST_TARGET == 'coding' ]]; then
cd $INSTALL_DIR;
python setup.py pyke_rules;
python setup.py std_names;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ohhh @pelson ... in hindsight, did we need the python setup.py pyke_rules and python setup.py std_names at line 120 above.... I'll check

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The tests went green. What issue did you encounter?

python setup.py test --coding-tests;
fi