onionbalance/.travis.yml
George Kadianakis 8c83d48802 Remove some tests that have been broken for a while
At some point we need to properly revive the functional tests:
   https://github.com/asn-d6/onionbalance/issues/46
2021-04-19 01:11:04 +03:00

22 lines
493 B
YAML

language: python
sudo: required
dist: bionic
python: 3.7
env:
- TEST=unit
install:
- pip install -r requirements.txt
- pip install -r test-requirements.txt
script:
# Tests are run with linters
- if [[ $TEST == functional* ]];
then
source ./test/scripts/run-functional-tests.sh;
elif [[ $TEST == 'unit' ]];
then
source ./test/scripts/run-unit-tests.sh;
fi
- sphinx-build -W -b html -d ./docs/_build ./docs ./docs/_build/html
after_success:
- coveralls