Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@ language: python
python:
- "2.6"
- "2.7"
- "3.5"
- "3.6"
- "3.7-dev"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

matrix:
  include:
    - python: 3.7
       dist: xenial # required for Python >= 3.7 (travis-ci/travis-ci#9069)

install:
- "pip install --use-mirrors coverage coveralls"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also add logilab-common

- "pip install --use-mirrors -r test_requirements.txt"
- "pip install --use-mirrors git+https://github.com/landscapeio/pylint-plugin-utils.git@develop"
- "pip install --use-mirrors --editable ."
- "pip install coverage coveralls"
- "pip install -r test_requirements.txt"
- "pip install git+https://github.com/landscapeio/pylint-plugin-utils.git@develop"
- "pip install --editable ."
script:
coverage run test/test_func.py
after_success:
Expand Down
7 changes: 7 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,11 @@
license='GPLv2',
keywords='pylint celery plugin',
zip_safe=False, # https://github.com/landscapeio/prospector/issues/18#issuecomment-49857277
classifiers=(
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7-dev',
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lose the -dev

)
)