summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 28f009c8e5cecad0ef768a6fc2b2baa79ec8d50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
language: python

python:
  - "2.6"
  - "2.7"
  - "3.2"
  - "3.3"
  - "3.4"

install:
  - if [ $TRAVIS_PYTHON_VERSION == '2.6' ]; then pip install unittest2; fi
  - pip install coverage coveralls

script:
  - coverage run -p --source=pyvisa --omit="*test*","*compat*" setup.py test
  - coverage combine
  - coverage report -m

after_script:
  - coveralls --verbose