https://github.com/GPflow/GPflow
Revision 66f52874091c9e28d84a795cce6ff6ca7ae3020b authored by Artem Artemev on 24 November 2018, 12:12:08 UTC, committed by Artem Artemev on 24 November 2018, 12:12:08 UTC
1 parent 62132f8
Raw File
Tip revision: 66f52874091c9e28d84a795cce6ff6ca7ae3020b authored by Artem Artemev on 24 November 2018, 12:12:08 UTC
Remove printing in travis.sh
Tip revision: 66f5287
travis.sh
#!/bin/bash

set -ex

TESTRUN="pytest -W ignore::UserWarning --durations=5 --cov=./gpflow -n auto"

if [ "${TRAVIS_PULL_REQUEST}" != "false" ] && [ "${TRAVIS_PULL_REQUEST_BRANCH}" != "develop" ]; then
    ${TESTRUN} -k 'not notebooks' ./tests;
else
    ${TESTRUN} ./tests;
fi

codecov --token=2ae2a756-f39c-467c-bd9c-4bdb3dc439c8
back to top