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 999bca5 commit e5257aaCopy full SHA for e5257aa
.travis.yml
@@ -8,8 +8,8 @@ jobs:
8
python: 3.8 # this works for Linux but is ignored on macOS or Windows
9
env:
10
- TRAVIS_RUN_LINTER=true
11
+ - TRAVIS_RUN_INTEGRATION_TESTS=true
12
- TRAVIS_GENERATE_DOCS=true
- - TRAVIS_TEST_OPTS=--doctest --codeblock
13
- TRAVIS_PYTHON_IMPLEMENTATION="cpython"
14
services: docker
15
before_script:
@@ -72,7 +72,11 @@ script:
72
- if [[ "$TRAVIS_RUN_LINTER" == "true" ]]; then
73
invoke lint;
74
fi
75
-- invoke test $TRAVIS_TEST_OPTS
+- if [[ "$TRAVIS_RUN_INTEGRATION_TESTS" == "true" ]]; then
76
+ invoke test --doctest --codeblock;
77
+ else
78
+ invoke test;
79
+ fi;
80
81
after_success:
82
- if [[ "$TRAVIS_GENERATE_DOCS" == "true" ]]; then
0 commit comments