Skip to content

Commit 4b87f8a

Browse files
committed
20 - Added all supported python versions under travis.yaml and changed the coverage command to pytest-cov
1 parent 39cdaee commit 4b87f8a

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.travis.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
dist: xenial
22
language: python
33
python:
4-
- "3.5"
54
- "3.6"
65
- "3.7"
76
- "3.8"
7+
- "3.9"
8+
- "3.10"
89
env:
910
- PYLINT=2.0.0
1011
- PYLINT=2.1.1
@@ -13,7 +14,7 @@ env:
1314
- PYLINT=master
1415
install:
1516
- |
16-
pip install coverage coveralls
17+
pip install pytest pytest-cov coveralls
1718
if [ "$PYLINT" == "master" ]; then
1819
pip install https://github.com/PyCQA/astroid/zipball/master
1920
pip install https://github.com/PyCQA/pylint/zipball/master
@@ -22,6 +23,6 @@ install:
2223
fi
2324
2425
script:
25-
- coverage run tests.py
26+
- pytest tests/ --cov=pylint_plugin_utils
2627
after_success:
2728
- coveralls

0 commit comments

Comments
 (0)