diff options
author | mattack108 <matt.lenc@gmail.com> | 2013-01-15 16:30:26 +0000 |
---|---|---|
committer | mattack108 <matt.lenc@gmail.com> | 2013-01-15 16:30:26 +0000 |
commit | e5754e77af98076b6483139370f536272db8efdd (patch) | |
tree | 2c966220d5728454a1d9ca5c10a33b07bdc400b8 /.travis.yml | |
parent | 887d3c6600750dd573e768c6fdf370a6a607d39b (diff) | |
download | django-wkhtmltopdf-e5754e77af98076b6483139370f536272db8efdd.tar.gz django-wkhtmltopdf-e5754e77af98076b6483139370f536272db8efdd.tar.bz2 django-wkhtmltopdf-e5754e77af98076b6483139370f536272db8efdd.zip |
Add requirements.txt and travis.yml files for Travis CI service
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..87ff52d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - 2.7 +script: make test +notifications: + email: false +install: + - pip install -r requirements.txt + - export DEBUG=True |