File: .travis.yml

package info (click to toggle)
python-scandir 1.10.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 224 kB
  • sloc: ansic: 1,596; python: 1,129; makefile: 4
file content (40 lines) | stat: -rw-r--r-- 859 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
sudo: false
language: python

matrix:
    include:
        - python: 2.7
          os: linux
          dist: trusty
          env: TOXENV=py27
        - python: pypy
          os: linux
          dist: trusty
          env: TOXENV=pypy
        - python: 3.4
          os: linux
          dist: trusty
          env: TOXENV=py34
        - python: 3.5
          os: linux
          dist: trusty
          env: TOXENV=py35
        - python: 3.6
          os: linux
          dist: trusty
          env: TOXENV=py36
        - python: 3.7
          os: linux
          dist: xenial
          env: TOXENV=py37
        - language: generic
          os: osx
          osx_image: xcode9.4
          env: TOXENV=py27,py36
        - language: generic
          os: osx
          osx_image: xcode10.1
          env: TOXENV=py27,py37

install: pip install tox
script: tox