Files
novelWriter/.travis.yml
T
Veronica K. B. Olsen f8d015840a Does gui test work?
2019-05-16 23:35:49 +02:00

22 lines
367 B
YAML

dist: xenial
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 pytest-qt
- pip install codecov
script:
- python -m pytest --cov=nw -m "project|core|gui" -v
after_success:
- codecov