https://github.com/GPflow/GPflow
Revision 071fda5f06e69f4c865d0fba9bd5646c02bc9a59 authored by vdutor on 07 January 2019, 09:50:54 UTC, committed by vdutor on 07 January 2019, 09:50:54 UTC
1 parent 04006b7
Raw File
Tip revision: 071fda5f06e69f4c865d0fba9bd5646c02bc9a59 authored by vdutor on 07 January 2019, 09:50:54 UTC
Work on sampling broadcasting conditionals
Tip revision: 071fda5
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