diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-06-09 10:50:25 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-06-10 14:21:38 +0900 |
commit | c06ad6e0826741ed633bc5ed24fe8dee668b8901 (patch) | |
tree | c4227bb77da031e147c4e437fe92ad7824377047 | |
parent | f0dbb920116c1ac1375a88ced59cc9dfcdbc4efc (diff) |
Add config file for Travis
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..633f2119 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: python +python: + - "2.6" + - "2.7" + +install: + - "pip install -r tools/pip-requires --use-mirrors" + +script: + - "./run_tests.sh" |