blob: dcd6bee0acea64af799c0306893700bd1d95d023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install commonmark coverage coveralls
script:
- python -m unittest discover -bv
- coverage run --branch --source=. -m unittest discover -bv
- coverage report -m
after_success:
- coveralls
|