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 ecd1f5d commit 419bf5cCopy full SHA for 419bf5c
.travis.yml
@@ -1,19 +1,19 @@
1
language: python
2
3
-matrix:
4
- include:
5
- - os: linux
6
- python: 2.7
7
- env: TOXENV=py27
8
9
- python: 3.4
10
- env: TOXENV=py34
11
12
- python: 3.5
13
- env: TOXENV=py35
+python:
+ - "2.7"
+ - "3.4"
+ - "3.5"
+ - "3.6"
14
15
install:
16
- pip install -r requirements/dev.txt
+ - pip install tox-travis
17
18
script:
19
- tox
+ - coverage run --source icon-font-to-png -m py.test
+ - coverage report -m
+
+after_success:
+ - coveralls
requirements/dev.txt
@@ -2,6 +2,7 @@
check-manifest>=0.34
coverage>=4.3.1
+coveralls>=1.1
flake8>=3.2.1
flaky>=3.3.0
pypandoc>=1.3.3
0 commit comments