File: .travis.yml

package info (click to toggle)
python-inject 5.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 224 kB
  • sloc: python: 1,044; makefile: 28; sh: 5
file content (14 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
dist: xenial
language: python
matrix:
  include:
    - python: '3.6'
    - python: '3.7'
      env: TOXENV=py37
    - python: '3.8'
      env: TOXENV=py37
install:
  - python -m pip install --upgrade --editable=./
script: 
  - nosetests test $EXTRA_ARGS
  - if [ "$TOXENV" = "py37" ]; then nosetests test37; fi