From 66022e250339082b8e7a435b338090151f189f61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mi=C5=A1o=20Belica?= Date: Thu, 23 Jan 2014 21:56:46 +0100 Subject: [PATCH] Updated dependecies and tests --- .travis.yml | 6 ++++-- requirements.txt | 9 +++++---- setup.py | 3 +++ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1f19bad..eb43d20 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,8 @@ python: - "3.3" before_install: sudo apt-get install libxml2-dev libxslt-dev # 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 -script: python setup.py install && nosetests tests +script: nosetests tests diff --git a/requirements.txt b/requirements.txt index ce7695a..cb9bdb6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,8 +1,9 @@ -charade -coverage docopt>=0.6.1,<0.7 +charade lxml -nose + nose-selecttests -pep8 pylint +coverage +nose +pep8 diff --git a/setup.py b/setup.py index ec989ca..0a938d4 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,11 @@ install_requires = [ "lxml>=2.0", ] tests_require = [ + "nose-selecttests", "coverage", + "pylint", "nose", + "pep8", ]