mirror of
https://github.com/drewkerrigan/nagios-http-json.git
synced 2024-11-22 02:13:47 +01:00
12 lines
219 B
YAML
12 lines
219 B
YAML
language: python
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.7"
|
|
install:
|
|
- pip install coverage
|
|
script:
|
|
- python -m unittest discover
|
|
- coverage run -m unittest discover
|
|
- coverage report -m --include check_http_json.py
|