From 66970b690892f800f2fcd7d3f189319e1c58e244 Mon Sep 17 00:00:00 2001 From: Dennis Lutter <lad1337@gmail.com> Date: Fri, 20 Apr 2012 16:13:44 +0200 Subject: [PATCH] travis yml and shebang for all_tests.py --- .travis.yml | 13 +++++++++++++ tests/all_tests.py | 1 + 2 files changed, 14 insertions(+) create mode 100644 .travis.yml mode change 100644 => 100755 tests/all_tests.py diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..beeb64de7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python +python: + - 2.5 + - 2.6 + - 2.7 + +# whitelist +branches: + only: + - unittest + +before_script: cd ./tests +script: ./all_tests.py \ No newline at end of file diff --git a/tests/all_tests.py b/tests/all_tests.py old mode 100644 new mode 100755 index fc0eac66c..ad9c9433e --- a/tests/all_tests.py +++ b/tests/all_tests.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python # coding=UTF-8 # Author: Dennis Lutter <lad1337@gmail.com> # URL: http://code.google.com/p/sickbeard/ -- GitLab