diff --git a/.travis.yml b/.travis.yml index ba29cf6..40b7f8f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -55,7 +55,7 @@ install: script: - set -e - if [[ -z "$TRAVIS_TAG" ]]; then - pytest -vv --cov=./; + pytest -vv -rP --cov=./; if [[ "$PYTHON" == "3.6" && "$TRAVIS_OS_NAME" == "linux" ]]; then git checkout -- test-environment.yaml; conda install -q sphinx doctr nbsphinx ipython; diff --git a/pyteck/tests/test_eval_model.py b/pyteck/tests/test_eval_model.py index f25f1a8..f48ccb9 100644 --- a/pyteck/tests/test_eval_model.py +++ b/pyteck/tests/test_eval_model.py @@ -219,6 +219,7 @@ def test(self): num_threads=1, skip_validation=True ) + print(output) assert numpy.isclose(output['average error function'], 58.78211242028232, rtol=1.e-3) assert numpy.isclose(output['error function standard deviation'], 0.0, rtol=1.e-3) assert numpy.isclose(output['average deviation function'], 7.635983785416241, rtol=1.e-3)