11 lines
No EOL
198 B
YAML
11 lines
No EOL
198 B
YAML
language: python
|
|
python:
|
|
- 3.6
|
|
install:
|
|
- pip install codecov
|
|
- pip install pytest-cov
|
|
- pip install -r requirements.txt
|
|
script:
|
|
- pytest tests --cov=validator
|
|
after_success:
|
|
- codecov |