diff options
author | mattack108 <matt.lenc@gmail.com> | 2013-01-15 16:44:19 +0000 |
---|---|---|
committer | mattack108 <matt.lenc@gmail.com> | 2013-01-15 16:44:19 +0000 |
commit | 794768b6eb3d8b80108e4e2b491f9ff8d36763d6 (patch) | |
tree | f9d910108531dc95a88d5086a1615de128f313c2 /.travis.yml | |
parent | e5754e77af98076b6483139370f536272db8efdd (diff) | |
download | django-wkhtmltopdf-794768b6eb3d8b80108e4e2b491f9ff8d36763d6.tar.gz django-wkhtmltopdf-794768b6eb3d8b80108e4e2b491f9ff8d36763d6.tar.bz2 django-wkhtmltopdf-794768b6eb3d8b80108e4e2b491f9ff8d36763d6.zip |
Move requirements file to test project, update travis.yml
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 87ff52d..1dbd10d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,10 @@ language: python python: + - 2.6 - 2.7 script: make test notifications: email: false install: - - pip install -r requirements.txt - - export DEBUG=True + - pip install -r wkhtmltopdf/tests/test_requirements.txt + - pip install . |