icinga2-checks/check_docker/.travis.yml

15 lines
309 B
YAML
Raw Normal View History

2023-05-03 12:20:18 -06:00
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install pipenv
- pipenv install
- pipenv install codeclimate-test-reporter
# command to run tests
script:
- py.test --cov=check_docker
- codeclimate-test-reporter || echo "Ignoring Code Climate reporter upload failure"