https://github.com/GPflow/GPflow
Revision a1ded81834cf43670a593ae053cceb07b686744f authored by Vincent Dutordoir on 19 December 2018, 10:44:47 UTC, committed by GitHub on 19 December 2018, 10:44:47 UTC
1 parent 815af20
Raw File
Tip revision: a1ded81834cf43670a593ae053cceb07b686744f authored by Vincent Dutordoir on 19 December 2018, 10:44:47 UTC
Apply suggestions from code review
Tip revision: a1ded81
travis.sh
#!/bin/bash

set -ex


TESTRUN="pytest -v -W ignore::UserWarning --durations=10 --cov=./gpflow"


if [[ ${TEST_SUITE:-all} = all ]]; then
    ${TESTRUN} ./tests
elif [[ ${TEST_SUITE} = units ]]; then
    ${TESTRUN} -m 'not notebooks' ./tests
else
    ${TESTRUN} -n auto -m ${TEST_SUITE} ./tests
fi

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