Skip to content
This repository was archived by the owner on Jun 11, 2019. It is now read-only.

Commit 37bb6e3

Browse files
committed
TOX_ENV=py, sorting tox.ini, bumping dep vers.
Bumping dependency versions to latest. Sorting tox.ini [pylint] section alphabetically. Reducing unnecessary complexity in .travis.yml. TOX_ENV of just "py" tells tox to use the current python executable.
1 parent 1090f9a commit 37bb6e3

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ install: pip install tox
2727
before_script:
2828
- git config --global user.email "[email protected]"
2929
- git config --global user.name "Travis CI"
30-
script: tox -e ${TOX_ENV:-py${TRAVIS_PYTHON_VERSION//.}}
30+
script: tox -e ${TOX_ENV:-py}
3131
after_success:
3232
- bash <(curl -s https://codecov.io/bash)
3333

tox.ini

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
install_requires =
33
click==6.6
44
colorclass==2.2.0
5-
sphinx==1.4.5
5+
sphinx==1.4.6
66
name = sphinxcontrib
77

88
[tox]
@@ -30,10 +30,9 @@ commands =
3030
pylint --rcfile=tox.ini setup.py {[general]name}
3131
deps =
3232
{[general]install_requires}
33-
coverage==4.2
3433
flake8-docstrings==1.0.2
35-
flake8-import-order==0.9.1
36-
flake8==3.0.3
34+
flake8-import-order==0.9.2
35+
flake8==3.0.4
3736
pep8-naming==0.4.1
3837
pylint==1.6.4
3938

@@ -66,13 +65,13 @@ max-line-length = 120
6665
statistics = True
6766

6867
[pylint]
68+
disable =
69+
too-few-public-methods,
70+
too-many-instance-attributes,
6971
ignore = .tox/*,build/*,docs/*,env/*,get-pip.py
7072
max-args = 6
7173
max-line-length = 120
7274
reports = no
73-
disable =
74-
too-few-public-methods,
75-
too-many-instance-attributes,
7675

7776
[run]
7877
branch = True

0 commit comments

Comments
 (0)