mirror of
https://github.com/codelucas/newspaper.git
synced 2025-12-23 05:36:50 +00:00
10 lines
218 B
YAML
10 lines
218 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
install:
|
|
- pip install -r requirements.txt coverage coveralls
|
|
- python download_corpora.py
|
|
script:
|
|
- coverage run --source newspaper tests/unit_tests.py
|
|
after_success:
|
|
coveralls
|