From 82a8d0ea03833ad5fe779868437fa4c9811a7c78 Mon Sep 17 00:00:00 2001 From: "D.B. Tsai" Date: Wed, 22 Aug 2012 16:14:04 -0700 Subject: Added tox for automation project testing, and travis-ci for continuous integration --- .travis.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b6cfd0b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: python + +python: + - "2.7" + +env: + - TOXENV=py26 + - TOXENV=py27 + - TOXENV=py32 + - TOXENV=py33 + - TOXENV=pep8,pyflakes + +# command to install dependencies +install: + - pip install tox + +# command to run tests +script: + - tox -- cgit v1.2.1