Files
dungeon-sheets/.travis.yml
T
2020-04-29 23:55:40 -05:00

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