Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

A bit of improvement on tests #6

Merged
merged 2 commits into from
Jun 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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