21 lines
350 B
YAML
21 lines
350 B
YAML
dist: xenial # required for Python >= 3.7
|
|
language: python
|
|
sudo: required
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libenchant-dev
|
|
python:
|
|
# - "3.5"
|
|
# - "3.6"
|
|
- "3.7"
|
|
# - "3.8-dev"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install pytest-cov
|
|
- pip install codecov
|
|
script:
|
|
- python -m pytest --cov=nw -v
|
|
after_success:
|
|
- codecov
|