diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..ef70b91 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,19 @@ +language: python + +python: + - "2.7" + - "3.3" + - "3.4" + - "3.5" + - "3.6" + +install: + - pip install commonmark coverage coveralls + +script: + - python -m unittest discover -bv + - coverage run --branch --source=. -m unittest discover -bv + - coverage report -m + +after_success: + - coveralls |