We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34b7704 commit 624a683Copy full SHA for 624a683
.travis.yml
@@ -37,8 +37,9 @@ install:
37
- source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh
38
- python setup.py install
39
40
-before_script:
41
- - cd tests
42
-
43
script:
44
- - py.test
+ - python qtpy/tests/runtests.py
+
+after_success:
+ - coveralls
45
appveyor.yml
@@ -35,5 +35,5 @@ install:
35
build: false
36
test_script:
- - "%CMD_IN_ENV% py.test"
+ - "%CMD_IN_ENV% python qtpy/tests/runtests.py"
circle.yml
@@ -29,5 +29,5 @@ test:
29
override:
30
- conda info --json: # note the colon
31
parallel: true
32
- - "$PYTEST tests/": # note the colon
+ - "$PYTHON_TEST qtpy/tests/runtests.py": # note the colon
33
0 commit comments