newspaper/.travis.yml
Kyle Jones a0f725333a
Dropping python 3.4 support (#768)
* Dropping python 3.4 support

* Fixing build issues

* Changed version number - incremented major version due to breaking change

* Removing pandas dependency
2020-06-22 13:38:44 -07:00

12 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