From 205ea0d160200ed60f2851d10fbceac7001f8088 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sat, 2 May 2015 00:58:25 +0200 Subject: [PATCH] Add a .travis.yml file Not sure if the travis-ci environment supports C extension modules or attributes on filesystems, but let's try. --- .travis.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4f14606 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.2" + - "3.3" + - "3.4" + - "nightly" +script: python ./setup.py test +addons: + apt: + packages: + - libattr1-dev -- 2.39.5