language: python python: - "3.6" - "3.7" - "3.8" before_install: - sudo apt-get -y install pdftk texlive-latex-base texlive-latex-extra texlive-fonts-recommended # command to install dependencies install: - pip install -r requirements.txt - pip install -r requirements-tests.txt - pip install -e . # command to run tests script: - pytest --cov=dungeonsheets tests/ - flake8 dungeonsheets/ --exit-zero - cd examples/ - makesheets -d - cd ../ after_success: - coveralls