]> git.k1024.org Git - pylibacl.git/blob - .travis.yml
Increase test coverage
[pylibacl.git] / .travis.yml
1 language: python
2
3 # let's test as many versions as we can!
4 python:
5     - "2.6"
6     - "2.7"
7     - "3.2"
8     - "3.3"
9     - "3.4"
10     - "3.5"
11     - "3.6"
12     - "nightly"
13
14 # we don't need any python dependencies:
15 install: true
16
17 # the test command:
18 script: python ./setup.py test
19
20 # but we do need a system library:
21 addons:
22   apt:
23     packages:
24       - libacl1-dev