11 lines
159 B
YAML
11 lines
159 B
YAML
|
language: python
|
||
|
python:
|
||
|
- "3.6.1"
|
||
|
- "3.7-dev"
|
||
|
install:
|
||
|
- pip install .[tests]
|
||
|
- pip install coveralls
|
||
|
script: pytest
|
||
|
after_success:
|
||
|
- coveralls
|