From 22feb502c73ee56c103d34595c775deec8f7ec11 Mon Sep 17 00:00:00 2001 From: juanpex Date: Mon, 9 Sep 2013 03:12:58 -0300 Subject: [PATCH] add travis test --- .travis.yml | 20 ++++++++++++++++++++ requirements.txt | 5 +---- 2 files changed, 21 insertions(+), 4 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..83e3c59 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,20 @@ +language: python +python: + - "2.5" + - "2.6" + - "2.7" +env: + - DJANGO_VERSION=1.3 + - DJANGO_VERSION=1.4 + - DJANGO_VERSION=1.5 +install: + - pip install -q Django==$DJANGO_VERSION + - pip install -r requirements.txt --use-mirrors +script: + - cd test_project && python manage.py test app --noinput +notifications: + email: + recipients: + - jpma55@gmail.com + on_success: always + on_failure: always diff --git a/requirements.txt b/requirements.txt index 3d007ee..6dd81b4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1 @@ -django==1.4.0 -south --e git+git://github.com/dcramer/django-devserver.git#egg=devserver --e git+git://github.com/django-debug-toolbar/django-debug-toolbar.git#egg=debug_toolbar +BeautifulSoup \ No newline at end of file