Files
novelWriter/.travis.yml
T
Veronica K. B. Olsen 15cf41b23d Added coverage
2019-05-16 14:45:40 +02:00

20 lines
321 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 --user codecov
script:
- python -m pytest -v
after_success:
- codecov