From e5754e77af98076b6483139370f536272db8efdd Mon Sep 17 00:00:00 2001 From: mattack108 Date: Tue, 15 Jan 2013 16:30:26 +0000 Subject: Add requirements.txt and travis.yml files for Travis CI service --- .travis.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') 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 -- cgit v1.2.3 From 794768b6eb3d8b80108e4e2b491f9ff8d36763d6 Mon Sep 17 00:00:00 2001 From: mattack108 Date: Tue, 15 Jan 2013 16:44:19 +0000 Subject: Move requirements file to test project, update travis.yml --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.travis.yml') 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 . -- cgit v1.2.3 From d4a938c08539264add40126ff5c8ab673a8f78c1 Mon Sep 17 00:00:00 2001 From: mattack108 Date: Tue, 15 Jan 2013 17:36:53 +0000 Subject: Update travis with before_script.sh which install wkhtmltopdf for Travis --- .travis.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to '.travis.yml') 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 -- cgit v1.2.3 From 28531169c5768d1a2bc810b2c9a322345e666550 Mon Sep 17 00:00:00 2001 From: mattack108 Date: Thu, 17 Jan 2013 09:54:42 +0000 Subject: Update travis.yml --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index cb3ffca..d89a6d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ python: - "2.6" - "2.7" before_script: - - "./before_script.sh" + - before_script.sh install: - pip install -r wkhtmltopdf/tests/test_requirements.txt - pip install . -- cgit v1.2.3 From 155fef5b5638fd20b76b69aa492e634ceb0316dc Mon Sep 17 00:00:00 2001 From: mattack108 Date: Thu, 17 Jan 2013 10:20:57 +0000 Subject: Change file permission --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index d89a6d7..cb3ffca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ python: - "2.6" - "2.7" before_script: - - before_script.sh + - "./before_script.sh" install: - pip install -r wkhtmltopdf/tests/test_requirements.txt - pip install . -- cgit v1.2.3