diff options
author | mattack108 <matt.lenc@gmail.com> | 2013-01-15 17:36:53 +0000 |
---|---|---|
committer | mattack108 <matt.lenc@gmail.com> | 2013-01-15 17:36:53 +0000 |
commit | d4a938c08539264add40126ff5c8ab673a8f78c1 (patch) | |
tree | 63aa44c7b3266f569e05ea65ac5dab4e2bba612c /.travis.yml | |
parent | cceabb0f893b67ff8924e7939ab1675235f88dca (diff) | |
download | django-wkhtmltopdf-d4a938c08539264add40126ff5c8ab673a8f78c1.tar.gz django-wkhtmltopdf-d4a938c08539264add40126ff5c8ab673a8f78c1.tar.bz2 django-wkhtmltopdf-d4a938c08539264add40126ff5c8ab673a8f78c1.zip |
Update travis with before_script.sh which install wkhtmltopdf for Travis
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 1dbd10d..cb3ffca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,13 @@ language: python python: - - 2.6 - - 2.7 -script: make test -notifications: - email: false + - "2.6" + - "2.7" +before_script: + - "./before_script.sh" install: - pip install -r wkhtmltopdf/tests/test_requirements.txt - pip install . +script: + - make test +notifications: + email: false |