File: .travis.yml

package info (click to toggle)
python-ruffus 2.8.4-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,492 kB
  • sloc: python: 17,613; makefile: 213; sh: 18
file content (24 lines) | stat: -rw-r--r-- 406 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: python

# all python versions tested via pip in tox
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"

# Travis does not properly support this yet.
# https://github.com/travis-ci/travis-ci/issues/9815
matrix:
  include:
    - python: 3.7
      dist: xenial
      sudo: true

before_install:

install: python setup.py install

script: cd ruffus/test && /bin/bash run_all_unit_tests.cmd

sudo: false