mirror of
https://github.com/codelucas/newspaper.git
synced 2021-06-07 22:52:17 +03:00
* Dropping python 3.4 support * Fixing build issues * Changed version number - incremented major version due to breaking change * Removing pandas dependency
13 lines
236 B
YAML
13 lines
236 B
YAML
language: python
|
|
python:
|
|
- "3.5"
|
|
- "3.6"
|
|
- "3.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
|