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 cache: pip
install: install:
- pip install pytest - pip install pytest
- pip install coverage
before_script: before_script:
cd tests cd tests
script: script:
- pytest test_1.py - pytest test_1.py
- coverage run -m pytest --cov=./
after_success:
- bash <(curl -s https://codecov.io/bash)