File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,19 @@ install:
75
75
script :
76
76
- ' if [ $SLYCOT != "" ]; then python -c "import slycot"; fi'
77
77
- coverage run setup.py test
78
+
79
+ # only run examples if Slycot is install
78
80
# set PYTHONPATH for examples
81
+ # pmw needed for examples/tfvis.py
82
+ # future is needed for Python 2, also for examples/tfvis.py
83
+
79
84
- if [[ "$SLYCOT" != "" ]]; then
80
- export PYTHONPATH=$PWD
81
- # pmw needed for examples/tfvis.py
82
- # future is needed for Python 2, also for examples/tfvis.py
83
- conda install -c conda-forge pmw future
84
- ' (cd examples && bash run_examples.sh)'
85
+ export PYTHONPATH=$PWD;
86
+ conda install -c conda-forge pmw future;
87
+ cd examples; bash run_examples.sh; cd ..;
85
88
fi
86
89
90
+ # arbitrary change to try to trigger travis build
91
+
87
92
after_success :
88
93
- coveralls
You can’t perform that action at this time.
0 commit comments