travis experiment #8

This commit is contained in:
Manuel Barkhau 2018-09-05 20:22:28 +02:00
parent 66e25247d8
commit 9a1c2e1f0b
3 changed files with 5 additions and 5 deletions

View file

@ -1,5 +1,6 @@
#!/bin/bash
set -e
set -v
rst2html5 --strict README.rst > /dev/null
rst2html5 --strict CHANGELOG.rst > /dev/null
@ -12,12 +13,10 @@ python -m pytest --cov=pycalver test/
if [[ $(python -c "import sys;print(sys.version[:3])") == "3.7" ]]; then
python -m flake8 src/pycalver/
MYPYPATH=stubs/
python -m mypy src/pycalver/
MYPYPATH=stubs/ python -m mypy src/pycalver/;
# next test module from src/
PYTHONPATH=src/:$PYTHONPATH
python -m pytest --cov=pycalver test/
PYTHONPATH=src/:$PYTHONPATH python -m pytest --cov=pycalver test/;
fi
codecov