fastNLP/.travis.yml
FengZiYjun 806364b5be * update travis config
* update README
2019-01-11 20:14:18 +08:00

15 lines
288 B
YAML

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=./
after_success:
- bash <(curl -s https://codecov.io/bash)