language: python python: - "3.6" - "3.7" - "3.8" # 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/ - cd examples/ - makesheets after_success: - coveralls