We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 80cdd44 + 8010f72 commit e0aaa5dCopy full SHA for e0aaa5d
2 files changed
.travis.yml
@@ -17,12 +17,13 @@ cache:
17
- pip
18
19
install:
20
- - travis_retry pip install -q codecov six
21
- - pip install flake8 # eventually worth
+ - travis_retry pip install -q codecov
+ - pip install flake8
22
+ - pip install -r requirements-dev.txt
23
24
script:
- # Run tests
25
- - PYTHONPATH=. nosetests -s -v --with-doctest --with-cov --cover-package . --logging-level=INFO -v .
+ - pytest --doctest-modules behavioral/ creational/ dft/ fundamental/ other/ structural/ # exclude tests/
26
+ - pytest -s -vv --cov=. --log-level=INFO tests/
27
# Actually run all the scripts, contributing to coverage
28
- PYTHONPATH=. ./run_all.sh
29
- flake8 *py
requirements-dev.txt
@@ -0,0 +1,2 @@
1
+pytest~=4.1
2
+pytest-cov~=2.6
0 commit comments