From 603082d39344b8b5d05ea01e2f87be46a411ade2 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Mon, 2 May 2016 23:07:14 +0200 Subject: [PATCH] Add travis config file This can be done now that travis environment has whitelisted the libacl1-dev package. --- .travis.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f34460b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,25 @@ +language: python + +# let's test as many versions as we can! +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" + - "nightly" + +# we don't need any python dependencies: +install: true + +# the test command: +script: python ./setup.py test + +# no need for sudo access, silence notice: +sudo: false + +# but we do need a system library: +addons: + apt: + packages: + - libacl1-dev -- 2.39.2