From af04165262191ac9c59de4ee44ebd15b59df23a5 Mon Sep 17 00:00:00 2001 From: Marc Abramowitz Date: Thu, 28 Jun 2012 23:25:59 -0700 Subject: Add .travis.yml for Travis CI (http://travis-ci.org/) --- .travis.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b483ebd --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: python + +python: + - 2.5 + - 2.6 + - 2.7 + - 3.2 + - pypy + +script: + - python setup.py install + - pystache-test ext/spec/specs -- cgit v1.2.1 From 432071e1891663fd07795903ecba309dd0ac387a Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Fri, 29 Jun 2012 05:43:57 -0700 Subject: Update HISTORY with support for Travis CI. --- .travis.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index b483ebd..95628a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: python +# Travis CI has no plans to support Python 2.4 and Jython. python: - 2.5 - 2.6 -- cgit v1.2.1 From a06d3dc1831eb39341707ace22999ab3538dd23c Mon Sep 17 00:00:00 2001 From: Chris Jerdonek Date: Fri, 29 Jun 2012 06:07:33 -0700 Subject: Update Travis file. --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 95628a3..bad487d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,11 @@ python: - 2.6 - 2.7 - 3.2 - - pypy + # TODO: get all tests passing with PyPy. + #- pypy script: - python setup.py install - - pystache-test ext/spec/specs + # Include the spec tests directory for Mustache spec tests and the + # project directory for doctests. + - pystache-test ext/spec/specs . -- cgit v1.2.1