https://github.com/GPflow/GPflow
Revision 132a1948c9b65355301a6d7aeb4f1dcf56d7e58d authored by Artem Artemev on 02 December 2018, 08:43:29 UTC, committed by Artem Artemev on 02 December 2018, 08:43:29 UTC
1 parent 44090f2
Raw File
Tip revision: 132a1948c9b65355301a6d7aeb4f1dcf56d7e58d authored by Artem Artemev on 02 December 2018, 08:43:29 UTC
Create conda env with yes option
Tip revision: 132a194
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