[go: up one dir, main page]

File: .travis.yml

package info (click to toggle)
flit 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,080 kB
  • sloc: python: 3,934; makefile: 161; sh: 16
file content (18 lines) | stat: -rw-r--r-- 269 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: python

python:
  - "3.8"
  - "3.7"
  - "3.6"
  - "3.5"
  - "3.4"  # 3.4 & 2.7 only test flit_core - see tox.ini

jobs:
  include:
    - python: "3.8"
      env: TOXENV=bootstrap

install:
  - pip install tox-travis codecov
script: tox
after_success: codecov