From ed3daa1f190e60a3b801990de68567df09d8bea1 Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Tue, 18 Jun 2013 21:53:46 -0400 Subject: Add travis configuration file for continuous integration --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .travis.yml (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..d144940 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: python +python: + - "2.5" + - "2.6" + - "2.7" + - "3.2" + - "3.3" -- cgit v1.2.3 From 52551696de34a28dd5de1799aaa2ec50c50aceb4 Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Tue, 18 Jun 2013 22:31:30 -0400 Subject: Define travis install and test directives --- .travis.yml | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index d144940..8e6edd7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,3 +5,11 @@ python: - "2.7" - "3.2" - "3.3" + +# command to install dependencies +install: + - "pip install . --use-mirrors" + +# command to run tests +script: + - "python test_dotfiles.py" -- cgit v1.2.3