Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions pyteck/tests/test_eval_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)