diff options
author | James Turnbull <james@jamesturnbull.org> | 2013-01-17 03:08:34 -0800 |
---|---|---|
committer | James Turnbull <james@jamesturnbull.org> | 2013-01-17 03:08:34 -0800 |
commit | 5716bc8be3b4599aad4c7b62759ce9dce9ed2f7a (patch) | |
tree | 68627af4697d7fe07f916c6bde9f5b4eb3259be3 /.travis.yml | |
parent | a03c1e14b0da1999590442719c42293a88ab9e3b (diff) | |
parent | d31a7cde37bf7a9a718dba1f929b5b5e89409724 (diff) | |
download | django-wkhtmltopdf-5716bc8be3b4599aad4c7b62759ce9dce9ed2f7a.tar.gz django-wkhtmltopdf-5716bc8be3b4599aad4c7b62759ce9dce9ed2f7a.tar.bz2 django-wkhtmltopdf-5716bc8be3b4599aad4c7b62759ce9dce9ed2f7a.zip |
Merge pull request #29 from incuna/travis-setup
Add travis for testing
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cb3ffca --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python +python: + - "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 |