You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- language: python
- python:
- - "3.6"
- # command to install dependencies
- install:
- - pip install --quiet -r requirements.txt
- - pip install pytest>=3.6
- - pip install pytest-cov
- # command to run tests
- script:
- - pytest --cov=./ test/
-
- after_success:
- - bash <(curl -s https://codecov.io/bash)
|