File: .travis.yml

package info (click to toggle)
gtimelog 0.11.2-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,220 kB
  • sloc: python: 4,151; xml: 125; makefile: 92
file content (22 lines) | stat: -rw-r--r-- 370 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
language: python
sudo: false
python:
    - 2.7
    - 3.4
    - 3.5
    - 3.6
matrix:
  include:
    - python: 3.7
      dist: xenial
      sudo: true
install:
    - pip install coverage coveralls
    - pip install freezegun mock
    - pip install --no-deps -e .
script:
    - coverage run -m gtimelog.tests
after_success:
    - coveralls
notifications:
    email: false