mirror of
https://gitee.com/fastnlp/fastNLP.git
synced 2024-11-30 03:07:59 +08:00
15 lines
299 B
YAML
15 lines
299 B
YAML
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
|
|
# command to run tests
|
|
script:
|
|
- pytest --cov=./
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|