fastNLP/.travis.yml

15 lines
299 B
YAML
Raw Normal View History

2018-08-11 10:11:09 +08:00
language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install --quiet -r requirements.txt
- pip install pytest pytest-cov
- pip install -U scikit-learn
2018-08-11 10:11:09 +08:00
# command to run tests
script:
- pytest --cov=./
after_success:
2018-08-17 19:28:38 +08:00
- bash <(curl -s https://codecov.io/bash)