summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-23 14:02:46 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-08-23 14:02:46 -0400
commit23f32cde4987d1c34e938884ba5569057a07d182 (patch)
treefc72126a85874eb06f45139abb83dbbad8bbe128
parenta8fac8a5a42ac59551279c08b0e1c50d6610906d (diff)
downloadbcfg2-23f32cde4987d1c34e938884ba5569057a07d182.tar.gz
bcfg2-23f32cde4987d1c34e938884ba5569057a07d182.tar.bz2
bcfg2-23f32cde4987d1c34e938884ba5569057a07d182.zip
add travis-ci config that excludes maint from CI tests
-rw-r--r--.travis.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..8786dcc77
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,31 @@
+language: python
+python:
+ - "2.5"
+ - "2.6"
+ - "2.7"
+ - "3.2"
+env:
+ - WITH_OPTIONAL_DEPS=yes
+ - WITH_OPTIONAL_DEPS=no
+matrix:
+ exclude:
+ - python: "3.2"
+ env: WITH_OPTIONAL_DEPS=yes
+before_install:
+ - testsuite/before_install.sh
+install:
+ - testsuite/install.sh
+ - pip install -e .
+script:
+ - nosetests testsuite
+branches:
+ except:
+ - maint
+ - 1.1.0-stable
+ - py3k
+notifications:
+ email: chris.a.st.pierre@gmail.com
+ irc:
+ channels:
+ - "irc.freenode.org#bcfg2"
+ use_notice: true