Skip to content

Commit bfeb853

Browse files
committed
travis: remove coverage target, don't use venv for docs target
1 parent 75ef63f commit bfeb853

File tree

1 file changed

+3
-24
lines changed

1 file changed

+3
-24
lines changed

.travis.yml

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -20,38 +20,17 @@ env:
2020
- TESTING=cpython
2121

2222
matrix:
23-
allow_failures:
24-
- env:
25-
- TESTING=coverage
2623
include:
2724
- os: linux
2825
language: python
29-
python: 3.5
26+
python: 2.7
3027
env:
3128
- TESTING=docs
3229
before_script:
3330
- cd Doc
34-
- make venv PYTHON=python3
31+
- pip install -U Sphinx
3532
script:
36-
- make html SPHINXBUILD="./venv/bin/python3 -m sphinx" SPHINXOPTS="-q"
37-
- os: linux
38-
language: c
39-
compiler: clang
40-
env:
41-
- TESTING=coverage
42-
before_script:
43-
- ./configure
44-
- make -s -j4
45-
# Need a venv that can parse covered code.
46-
- ./python -m venv venv
47-
- ./venv/bin/python -m pip install -U coverage
48-
script:
49-
# Skip tests that re-run the entire test suite.
50-
- ./venv/bin/python -m coverage run --pylib -m test -uall -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn
51-
after_script: # Probably should be after_success once test suite updated to run under coverage.py.
52-
# Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
53-
- source ./venv/bin/activate
54-
- bash <(curl -s https://codecov.io/bash)
33+
- make html SPHINXOPTS="-q"
5534
- os: linux
5635
language: cpp
5736
compiler: clang

0 commit comments

Comments
 (0)