Skip to content
Snippets Groups Projects
Commit 28c11d76 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Do not test on Travis lint target

parent df6476ef
No related merge requests found
......@@ -15,8 +15,8 @@ matrix:
fast_finish: true
include:
- python: 3.6
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py36" COVERAGE="true"
- env: DISTRIB="conda" PYTHON_VERSION="3.6" COVERAGE="false"
env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py36" COVERAGE="true" LINT="false"
- env: DISTRIB="conda" PYTHON_VERSION="3.6" COVERAGE="false" LINT="false"
- env: DISTRIB="ubuntu" TOX_PYTHON_VERSION="py36" COVERAGE="false" LINT="true"
install:
- source tests/travis_install.sh
......@@ -26,7 +26,7 @@ before_script:
script:
- export NO_GPU_EXECUTION=1
- pip install -e .
- python setup.py test
- if [[ "$LINT" == "false" ]]; then python setup.py test; fi
- if [[ "$LINT" == "true" ]]; then flake8 src; fi
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; codecov; fi
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment