Skip to content

Commit

Permalink
Merge pull request #6 from MrSenko/add_some_tests
Browse files Browse the repository at this point in the history
A bit of improvement on tests
  • Loading branch information
carlio committed Jun 29, 2018
2 parents 9c522b5 + a4bbe86 commit 8a4d0d6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
20 changes: 15 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
- PYLINT=1.8.1
- PYLINT=github
install:
- "pip install coverage coveralls"
- "pip install --editable ."
- |
pip install coverage coveralls
if [ "$PYLINT" == "github" ]; then
pip install https://github.com/PyCQA/astroid/zipball/master
pip install https://github.com/PyCQA/pylint/zipball/master
else
pip install pylint==$PYLINT
fi
script:
true
- coverage run tests.py
after_success:
- coveralls
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author_email='code@landscape.io',
description=_short_description,
version=_version,
install_requires=['pylint', 'astroid'],
install_requires=['pylint'],
packages=_packages,
license='GPLv2',
classifiers=_classifiers,
Expand Down
1 change: 1 addition & 0 deletions tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import pylint_plugin_utils

0 comments on commit 8a4d0d6

Please sign in to comment.