Updated dependecies and tests

pull/21/head
Mišo Belica 11 years ago
parent e42cfbe487
commit 66022e2503

@ -6,6 +6,8 @@ python:
- "3.3" - "3.3"
before_install: sudo apt-get install libxml2-dev libxslt-dev before_install: sudo apt-get install libxml2-dev libxslt-dev
# command to install dependencies # command to install dependencies
install: pip install -r requirements.txt --use-mirrors install:
- python setup.py install
- pip install -r requirements.txt --use-mirrors
# command to run tests # command to run tests
script: python setup.py install && nosetests tests script: nosetests tests

@ -1,8 +1,9 @@
charade
coverage
docopt>=0.6.1,<0.7 docopt>=0.6.1,<0.7
charade
lxml lxml
nose
nose-selecttests nose-selecttests
pep8
pylint pylint
coverage
nose
pep8

@ -20,8 +20,11 @@ install_requires = [
"lxml>=2.0", "lxml>=2.0",
] ]
tests_require = [ tests_require = [
"nose-selecttests",
"coverage", "coverage",
"pylint",
"nose", "nose",
"pep8",
] ]

Loading…
Cancel
Save