Skip to content

Commit 2961b9e

Browse files
author
Carl
committed
Merge branch 'master' of ssh://github.com/PyCQA/pylint-plugin-utils
2 parents 5a7f47f + 1a0c6d2 commit 2961b9e

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed

.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

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## Status
44

5-
[![Build Status](https://travis-ci.org/landscapeio/pylint-plugin-utils.svg?branch=master)](https://travis-ci.org/landscapeio/pylint-plugin-utils)
6-
[![Code Health](https://landscape.io/github/landscapeio/pylint-plugin-utils/master/landscape.svg?style=flat)](https://landscape.io/github/landscapeio/pylint-plugin-utils/master)
7-
[![Coverage Status](https://coveralls.io/repos/github/landscapeio/pylint-plugin-utils/badge.svg?branch=master)](https://coveralls.io/github/landscapeio/pylint-plugin-utils?branch=master)
5+
[![Build Status](https://travis-ci.org/PyCQA/pylint-plugin-utils.svg?branch=master)](https://travis-ci.org/PyCQA/pylint-plugin-utils)
6+
[![Code Health](https://landscape.io/github/PyCQA/pylint-plugin-utils/master/landscape.svg?style=flat)](https://landscape.io/github/PyCQA/pylint-plugin-utils/master)
7+
[![Coverage Status](https://coveralls.io/repos/github/PyCQA/pylint-plugin-utils/badge.svg?branch=master)](https://coveralls.io/github/PyCQA/pylint-plugin-utils?branch=master)
88

99
# About
1010

11-
Utilities and helpers for writing Pylint plugins. This is not a direct Pylint plugin, but rather a set of tools and functions used by other plugins such as [pylint-django](https://github.com/landscapeio/pylint-django) and [pylint-celery](https://github.com/landscapeio/pylint-celery).
11+
Utilities and helpers for writing Pylint plugins. This is not a direct Pylint plugin, but rather a set of tools and functions used by other plugins such as [pylint-django](https://github.com/PyCQA/pylint-django) and [pylint-celery](https://github.com/PyCQA/pylint-celery).
1212

1313
# License
1414

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
author_email='code@landscape.io',
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)