Added travis continuous integration.

This commit is contained in:
Mark Wolfman
2018-10-14 14:07:25 -05:00
parent 2c8492485e
commit b09fb2430b
3 changed files with 15 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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
+3
View File
@@ -4,6 +4,9 @@
A tool to create character sheets for Dungeons and Dragons. A tool to create character sheets for Dungeons and Dragons.
.. image:: https://travis-ci.com/canismarko/dungeon-sheets.svg?branch=master
:target: https://travis-ci.com/canismarko/dungeon-sheets
Installation Installation
============ ============
+1
View File
@@ -2,3 +2,4 @@ certifi>=2018.1.18
fdfgen>=0.16 fdfgen>=0.16
npyscreen npyscreen
jinja2 jinja2
pytest