You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 362 B

6 years ago
12345678910111213141516
  1. language: python
  2. python:
  3. - "3.6"
  4. # command to install dependencies
  5. install:
  6. - pip install --quiet -r requirements.txt
  7. - pip install --quiet fitlog
  8. - pip install pytest>=3.6
  9. - pip install pytest-cov
  10. # command to run tests
  11. script:
  12. - python -m spacy download en
  13. - pytest --cov=fastNLP test/
  14. after_success:
  15. - bash <(curl -s https://codecov.io/bash)