File: .travis.yml

package info (click to toggle)
readability 0.8.1%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 216 kB
  • sloc: python: 897; makefile: 37
file content (60 lines) | stat: -rw-r--r-- 1,317 bytes parent folder | download | duplicates (2)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
language: python
os: linux
cache: pip

matrix:
  include:
    - name: "Python 2.7 on Linux"
      python: 2.7
      env: PIP=pip
    - name: "Python 3.5 on Linux"
      python: 3.5
    - name: "Python 3.6 on Linux"
      python: 3.6
    - name: "Python 3.7 on Linux"
      python: 3.7
    - name: "Python 3.8 on Linux"
      dist: xenial
      python: 3.8
    - name: "Python 3.9 Nightly on Linux"
      dist: bionic
      python: nightly
    - name: "Pypy on Linux"
      python: pypy
      env: PIP=pip
    - name: "Pypy 3 on Linux"
      python: pypy3
    - name: "Python 3.7 on older macOS"
      os: osx
      osx_image: xcode9.4
      language: shell
      env: TOXENV=py37
      before_install:
        - sw_vers
        - python3 --version
        - pip3 --version
    - name: "Python 3.7 on macOS"
      os: osx
      osx_image: xcode11
      language: shell
      env: TOXENV=py37
      before_install:
        - sw_vers
        - python3 --version
        - pip3 --version
  allow_failures:
    - python: nightly
    - python: pypy
    - python: pypy3
    - os: osx

install:
  - if [ $PIP ]; then true; else PIP=pip3; fi
  - travis_retry $PIP install -U pip wheel tox-travis pytest-cov codecov
  - travis_retry $PIP install -U -r requirements.txt -e ".[test]"

script:
  - tox

after_success:
  - codecov