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 7cf755b commit 42de385Copy full SHA for 42de385
.gitignore
@@ -1,9 +1,10 @@
1
-*.pyc
2
-__pycache__
3
-*.log
+*.pyc
+__pycache__
+*.log
4
/distribute-0.6.35.tar.gz
5
/distribute-0.6.35-py2.7.egg
6
/pytest_qt.egg-info
7
/build
8
/dist
9
.env*
10
+.coverage
.travis.yml
@@ -31,11 +31,17 @@ install:
31
- pip uninstall -y pytest
32
- pip install pytest==$PYTEST_VERSION
33
34
+ # others
35
+ - pip install coveralls --use-wheel
36
+
37
before_script:
38
- export DISPLAY=:99.0
39
- sh -e /etc/init.d/xvfb start
40
- sleep 3
41
42
script:
43
- python setup.py develop
- - py.test
44
+ - coverage run --source=pytestqt py.test
45
46
+after_success:
47
+ - coveralls
0 commit comments