https://github.com/GPflow/GPflow
Raw File
Tip revision: f3154bfca90196e06d42c6b27d44d35e27e58563 authored by Artem Artemev on 03 December 2018, 00:36:31 UTC
Merge branch 'develop' into hughsalimbeni-broadcasting-conditional
Tip revision: f3154bf
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