forked from gtimelog/gtimelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
37 lines (37 loc) · 804 Bytes
/
.travis.yml
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
32
33
34
35
36
37
language: python
python:
- 3.6
- 3.7
- 3.8
- pypy3
jobs:
include:
- name: flake8
python: 3.8
install: pip install tox
script: tox -e flake8
after_success:
- name: isort
python: 3.8
install: pip install tox
script:
- tox -e isort
after_success:
# coveralls.io never reports commit statuses for some reason, and of course
# you don't get support for a free product
- name: coverage
python: 3.8
install: pip install tox
script:
- tox -e coverage
after_success:
install:
- pip install coverage coveralls -cconstraints.txt
- pip install freezegun flake8
- pip install --no-deps -e .
script:
- coverage run -m gtimelog.tests
after_success:
- coveralls
notifications:
email: false