Skip to content

Commit 03e753c

Browse files
committed
Removed coveralls from travis yaml.
1 parent a40b794 commit 03e753c

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.travis.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,15 @@ sudo: false
1515

1616
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
1717
install:
18-
- pip install coverage
18+
- pip install -U pip
19+
- pip install -U pytest
1920

2021
# command to run tests, e.g. python setup.py test
2122
script:
22-
- coverage run --source pointofview setup.py test --verbose
23-
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then python -m doctest pointofview/__init__.py; fi
24-
25-
after_success:
26-
- pip install coveralls
27-
- coveralls # send coverage to coveralls.io
23+
- python ./setup.py develop
24+
- pytest test/*
2825

2926
after_script:
30-
- coverage report # show coverage on cmd line
3127
- pip install pycodestyle pyflakes
3228
- pyflakes . | tee >(wc -l) # static analysis
3329
- pycodestyle --statistics --count . # static analysis

0 commit comments

Comments
 (0)