mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
15 lines
294 B
YAML
15 lines
294 B
YAML
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/
|
|
after_success:
|
|
- coveralls |