mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Merge pull request #928 from paulromano/travis-fail-fast
Make sure Travis checks results of regression and unit tests
This commit is contained in:
commit
0ca6f416d3
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ script:
|
|||
- if [[ $OPENMC_CONFIG == "check_source" ]]; then
|
||||
./check_source.py;
|
||||
else
|
||||
./run_tests.py -C $OPENMC_CONFIG -j 2;
|
||||
./run_tests.py -C $OPENMC_CONFIG -j 2 &&
|
||||
pytest --cov=../openmc unit_tests/;
|
||||
fi
|
||||
- cd ..
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -61,7 +61,7 @@ kwargs = {
|
|||
# Required dependencies
|
||||
'install_requires': [
|
||||
'six', 'numpy>=1.9', 'h5py', 'scipy', 'ipython', 'matplotlib',
|
||||
'pandas>=0.17.0', 'lxml', 'uncertainties'
|
||||
'pandas<0.21.0', 'lxml', 'uncertainties'
|
||||
],
|
||||
|
||||
# Optional dependencies
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue