Skip to content

Commit ef72786

Browse files
author
Abhishek Singh
committed
Coverage process
1 parent 850e3bb commit ef72786

1 file changed

Lines changed: 21 additions & 8 deletions

File tree

.travis.yml

Lines changed: 21 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,36 @@
11
language: python
2+
matrix:
3+
include:
4+
- os: linux
5+
python: 3.6
6+
env:
7+
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.6/lib/python3.6/sitecustomize.py"
8+
- os: linux
9+
python: 3.7
10+
env:
11+
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.7/lib/python3.7/sitecustomize.py"
12+
- os: linux
13+
python: 3.8
14+
env:
15+
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.8/lib/python3.8/sitecustomize.py"
16+
- os: linux
17+
python: pypy3
18+
env:
19+
- SITECUSTOMIZELIBPATH="/home/travis/virtualenv/python3.8/lib/python3.8/sitecustomize.py"
20+
221
os:
322
- linux
423
before_install:
524
- export COVERAGE_PROCESS_START="${TRAVIS_BUILD_DIR}/.coveragerc"
625
- export PATH="$PWD/.travis:$PATH"
7-
python:
8-
- "3.6"
9-
- "3.7"
10-
- "3.8"
11-
- "pypy3"
1226
script:
1327
- pip install nose
1428
- pip install coverage
1529
- pip install coveralls
1630
- echo $PATH
17-
- echo $PYTHONPATH
18-
- cp "${TRAVIS_BUILD_DIR}/.travis/sitecustomize.py" ./lib/python
31+
- ls -lrt /home/travis/virtualenv
1932
- python setup.py nosetests --with-coverage
2033
- coverage run --concurrency=multiprocessing -m unittest discover -s sqlite_rx/tests
21-
- coverage combine
34+
- coverage combine --apppend
2235
- coverage report -i -m
2336
- coveralls

0 commit comments

Comments
 (0)