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 307addd commit e3ceed2Copy full SHA for e3ceed2
.travis.yml
@@ -15,11 +15,17 @@ install:
15
script:
16
# cd into tests so CWD being repo2docker does not hide
17
# possible issues with MANIFEST.in
18
-- if [ ${REPO_TYPE} == "r" ]; then cd tests && travis_wait pytest --cov repo2docker
19
- -v ${REPO_TYPE}; else cd tests && travis_retry pytest --cov repo2docker -v ${REPO_TYPE};
20
- fi
+- pushd tests;
+ if [ ${REPO_TYPE} == "r" ]; then
+ travis_wait pytest --cov repo2docker -v ${REPO_TYPE};
21
+ else
22
+ travis_retry pytest --cov repo2docker -v ${REPO_TYPE};
23
+ fi;
24
+ popd;
25
- pip install -r docs/doc-requirements.txt
-- cd docs && make html
26
+- pushd docs;
27
+ make html;
28
29
after_success:
30
- pip install codecov
31
- codecov
0 commit comments