diff options
author | Brian Waldon <brian@waldon.cc> | 2016-06-25 10:41:34 -0700 |
---|---|---|
committer | Brian Waldon <brian@waldon.cc> | 2016-06-25 10:41:34 -0700 |
commit | 59c79b8c21ffdc7f1530f624c616bf6a842bc429 (patch) | |
tree | 0cd62a7ec167143d3e33778f359b8a0238d0792b /.travis.yml | |
parent | 3e046b84b8c521a0133bd8eb88814ce9a585169f (diff) | |
download | warlock-59c79b8c21ffdc7f1530f624c616bf6a842bc429.tar.gz |
Setup Travis CI config
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f503ef7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.3" + - "3.4" + - "3.5" +install: "pip install -r requirements.txt" +script: nosetests |