We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ee461 commit b8b8dd4Copy full SHA for b8b8dd4
3 files changed
.coveragerc
@@ -0,0 +1,2 @@
1
+[run]
2
+source = ./libcomxml
.travis.yml
@@ -1,11 +1,11 @@
language: python
python:
3
- - "2.6"
4
- "2.7"
5
install:
6
- "pip install ."
7
- - if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install unittest2; fi
+ - "pip install coveralls"
8
script:
9
- - py.test tests/*.py
10
-notifications:
11
- irc: "irc.freenode.org#gisce-commits"
+ - coverage run setup.py test
+after_success:
+ - coveralls
+ - coverage report
setup.py
@@ -10,5 +10,6 @@
packages=find_packages(),
install_requires=['lxml'],
12
license='None',
13
- description='This library permits XML generation from Python objects'
+ description='This library permits XML generation from Python objects',
14
+ test_suite='tests'
15
)
0 commit comments