You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
299 B
18 lines
299 B
4 months ago
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
if [ -n "${TOXENV}" ]; then
|
||
|
case "${TOXENV}" in
|
||
|
pypy-nocoverage);;
|
||
|
pep8);;
|
||
|
py3pep8);;
|
||
|
docs);;
|
||
|
*)
|
||
|
source ~/.venv/bin/activate
|
||
|
codecov --env TRAVIS_OS_NAME,TOXENV,OPENSSL,DOCKER
|
||
|
;;
|
||
|
esac
|
||
|
fi
|