15 lines
309 B
YAML
15 lines
309 B
YAML
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"
|