We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78e6d42 commit 1b48437Copy full SHA for 1b48437
2 files changed
.travis.yml
@@ -1,6 +1,9 @@
1
language: python
2
os:
3
- linux
4
+before_install:
5
+ - export COVERAGE_PROCESS_START="${TRAVIS_BUILD_DIR}/.coveragerc"
6
+ - export PATH="$PWD/.travis:$PATH"
7
python:
8
- "3.6"
9
- "3.7"
@@ -10,10 +13,7 @@ script:
10
13
- pip install nose
11
14
- pip install coverage
12
15
- pip install coveralls
- - python -m site
- - echo ${TRAVIS_BUILD_DIR}
- - ls -art ${TRAVIS_BUILD_DIR}
16
- - ls -lrt ${TRAVIS_BUILD_DIR}
+ - cp "${TRAVIS_BUILD_DIR}/.travis/sitecustomize.py" ./lib/python
17
- python setup.py nosetests --with-coverage
18
- coverage run --concurrency=multiprocessing -m unittest discover -s sqlite_rx/tests
19
- coverage combine
.travis/sitecustomize.py
@@ -0,0 +1,2 @@
+import coverage
+coverage.process_startup()
0 commit comments