File: .travis.yml

package info (click to toggle)
python-flaky 3.3.0-1~bpo8%2B1
  • links: PTS
  • area: main
  • in suites: jessie-backports
  • size: 388 kB
  • sloc: python: 1,947; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python
env:
  - TOX_ENV=py26
  - TOX_ENV=py27
  - TOX_ENV=py33
  - TOX_ENV=py34
  - TOX_ENV=pypy
  - TOX_ENV=pep8
  - TOX_ENV=pylint
  - TOX_ENV=coverage
# commands to install dependencies
install:
  - pip install tox --use-mirrors
# commands to run
script:
  - tox -e $TOX_ENV
after_success:
  - if [ "-x$TOX_ENV" = "xcoverage" ]; then coveralls; fi