Update .travis.yml

This commit is contained in:
Akash 2020-07-20 15:24:26 +05:30 committed by GitHub
parent 94cb08bb37
commit bae3412bee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,11 @@ dist: xenial
cache: pip
install:
- pip install pytest
- pip install coverage
before_script:
cd tests
script:
- pytest test_1.py
- coverage run -m pytest --cov=./
after_success:
- bash <(curl -s https://codecov.io/bash)