File: .travis.yml

package info (click to toggle)
python-first 2.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 128 kB
  • sloc: python: 90; sh: 12; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 344 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
dist: xenial
group: travis_latest
cache:
  directories:
    - $HOME/.cache/pip

language: python

matrix:
  include:
    - python: "2.6"
      dist: trusty
    - python: "2.7"
    - python: "3.3"
      dist: trusty
    - python: "3.4"
    - python: "3.5"
    - python: "3.6"
    - python: "3.7"

install:
  - "pip install ."

script: make test