mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
12 lines
217 B
YAML
12 lines
217 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
- "3.7-dev" # 3.7 development branch
|
|
# command to install dependencies
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install -e .
|
|
# command to run tests
|
|
script:
|
|
- pytest
|