Skip to content

Commit

Permalink
coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
Paweł Piotr Przeradowski committed Aug 9, 2013
1 parent 2c9808a commit 72002c5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ matrix:
install:
- if [[ `python -c "import sys; print(int(sys.version_info < (2, 7)))"` == "1" ]]; then pip install --use-mirrors unittest2; fi
- pip install -v --use-mirrors .
- if [[ $TEST ]]; then pip install coverage; fi
- if [[ $TEST ]]; then pip install --use-mirrors coverage coveralls; fi
- if [[ "$LINT" ]]; then pip install --use-mirrors pylama py3kwarn; fi
before_script:
- python symlinkcdll.py
Expand All @@ -31,3 +31,5 @@ before_script:
script:
- if [[ $TEST ]]; then nosetests --with-coverage --cover-package=pystacia; fi
- if [[ "$LINT" ]]; then cd pystacia && bash -c "$LINT"; fi
after_success:
- coveralls
2 changes: 1 addition & 1 deletion ROADMAP-0.3
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ reduce complexity of the functions
implement coveralls
update enum data
update docs
build new binaries
build new binaries (with RPATH on Linux, otool on Mac)
6 changes: 6 additions & 0 deletions ROADMAP-0.4
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
py.test
drop distutils solo, always expect setuptools
drop python 2.5 (@property, delete StringFormat, delete from future import with)
evaluate CFFI on Windows, IronPython and Jython
make pylint happy with some exclusions

0 comments on commit 72002c5

Please sign in to comment.