https://github.com/GPflow/GPflow
Revision ddd25cd4614a5c345df986705e9380e2cdb1aeab authored by vdutor on 18 December 2018, 14:12:59 UTC, committed by vdutor on 18 December 2018, 14:12:59 UTC
1 parent 0af98cc
Raw File
Tip revision: ddd25cd4614a5c345df986705e9380e2cdb1aeab authored by vdutor on 18 December 2018, 14:12:59 UTC
Change broadcasting behaviour kernels
Tip revision: ddd25cd
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