We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2382acd commit 17605caCopy full SHA for 17605ca
.travis.yml
@@ -4,12 +4,15 @@ python:
4
- "3.4"
5
- "3.5"
6
before_install:
7
- - wget https://github.com/jgm/pandoc/releases/download/2.1.1/pandoc-2.1.1-1-amd64.deb
8
- - sudo dpkg -i pandoc-2.1.1-1-amd64.deb
+ - wget https://github.com/jgm/pandoc/releases/download/2.2.1/pandoc-2.2.1-1-amd64.deb
+ - sudo dpkg -i pandoc-2.2.1-1-amd64.deb
9
- pandoc -v
10
install:
11
- pip install coveralls
12
+ - pip install tox-travis
13
script:
14
+ - tox
15
- coverage run --source=pandoc_codeblock_include setup.py test
16
+ - coverage report -m
17
after_success:
18
- coveralls
tox.ini
@@ -0,0 +1,6 @@
1
+[tox]
2
+envlist = py27,py34,py35
3
+
+[testenv]
+deps = pytest
+commands = pytest
0 commit comments