Skip to content

Commit 8a4d0d6

Browse files
authored
Merge pull request #6 from MrSenko/add_some_tests
A bit of improvement on tests
2 parents 9c522b5 + a4bbe86 commit 8a4d0d6

3 files changed

Lines changed: 17 additions & 6 deletions

File tree

.travis.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
language: python
22
python:
3-
- "2.6"
43
- "2.7"
5-
- "3.3"
64
- "3.4"
75
- "3.5"
86
- "3.6"
7+
env:
8+
- PYLINT=1.8.1
9+
- PYLINT=github
910
install:
10-
- "pip install coverage coveralls"
11-
- "pip install --editable ."
11+
- |
12+
pip install coverage coveralls
13+
if [ "$PYLINT" == "github" ]; then
14+
pip install https://github.com/PyCQA/astroid/zipball/master
15+
pip install https://github.com/PyCQA/pylint/zipball/master
16+
else
17+
pip install pylint==$PYLINT
18+
fi
19+
1220
script:
13-
true
21+
- coverage run tests.py
22+
after_success:
23+
- coveralls

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
author_email='[email protected]',
2828
description=_short_description,
2929
version=_version,
30-
install_requires=['pylint', 'astroid'],
30+
install_requires=['pylint'],
3131
packages=_packages,
3232
license='GPLv2',
3333
classifiers=_classifiers,

tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import pylint_plugin_utils

0 commit comments

Comments
 (0)