Files
novelWriter/.travis.yml
T
Veronica K. B. Olsen a0671469bb Added some debug stuff
2019-05-17 10:52:11 +02:00

29 lines
587 B
YAML

os: linux
dist: xenial
services:
- xvfb
language: python
cache: bundler
sudo: required
addons:
apt:
packages:
- libenchant-dev
python:
- "3.7"
install:
- pip install -r requirements.txt
# - pip install pytest-faulthandler
- pip install pytest-xvfb
- pip install pytest-cov
- pip install pytest-qt
- pip install codecov
script:
- python -m pytest --cov=nw -m "project|core|gui" -v
# - python -m pytest --cov=nw -m "project|core" -v
after_success:
- codecov
after_failure:
- echo "Peak Memory: $(cat /sys/fs/cgroup/memory/memory.max_usage_in_bytes) bytes"