We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf9ae53 commit e613659Copy full SHA for e613659
{{cookiecutter.github_project_name}}/.travis.yml
@@ -46,9 +46,11 @@ before_script:
46
script:
47
- |
48
if [[ $GROUP == python ]]; then
49
+ EXIT_STATUS=0
50
pushd $(mktemp -d)
- py.test -l --cov-report xml:$TRAVIS_BUILD_DIR/coverage.xml --cov={{ cookiecutter.python_package_name }} --pyargs {{ cookiecutter.python_package_name }}
51
+ py.test -l --cov-report xml:$TRAVIS_BUILD_DIR/coverage.xml --cov={{ cookiecutter.python_package_name }} --pyargs {{ cookiecutter.python_package_name }} || EXIT_STATUS=$?
52
popd
53
+ exit $EXIT_STATUS
54
elif [[ $GROUP == js ]]; then
55
npm test
56
fi
0 commit comments