fastNLP/.travis.yml
FengZiYjun cc15588a77 - add progress bar for data set loading
- improve metrics codes
- fix validator bugs in trainer; remove early saving
- run CWS codes
- improve README.md
2018-10-01 20:33:29 +08:00

14 lines
267 B
YAML

language: python
python:
- "3.6"
# command to install dependencies
install:
- pip install --quiet -r requirements.txt
- pip install pytest pytest-cov
# command to run tests
script:
- pytest --cov=./
after_success:
- bash <(curl -s https://codecov.io/bash)