File: .travis.yml

package info (click to toggle)
pyepr 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,104 kB
  • sloc: python: 3,128; makefile: 256; sh: 13
file content (31 lines) | stat: -rw-r--r-- 621 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
language: python

python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"
  - "3.8"
  - "nightly"
  - "pypy"
  - "pypy3"

matrix:
  allow_failures:
    - python: "pypy3"

before_install:
  - sudo apt-get update
  - sudo apt-get install -y libepr-api-dev

install:
  - pip install -r requirements.txt
  - pip install sphinx coverage codecov
  - if [[ $TRAVIS_PYTHON_VERSION < '3.4' ]]; then pip install -U unittest2; fi

script:
  - if [[ $TRAVIS_PYTHON_VERSION = '3.7' ]]; then make PYTHON=python coverage; else make PYTHON=python check; fi

after_success:
  - if [[ $TRAVIS_PYTHON_VERSION = '3.7' ]]; then codecov; fi