Thanks to visit codestin.com
Credit goes to github.com

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
3 changes: 2 additions & 1 deletion src/header.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
# pylint:disable=invalid-name,import-outside-toplevel,missing-function-docstring
# pylint:disable=missing-class-docstring,too-many-branches,too-many-statements
# pylint:disable=raise-missing-from,too-many-lines,too-many-locals,import-error
# pylint:disable=too-few-public-methods,redefined-outer-name,consider-using-with
# pylint:disable=too-few-public-methods,redefined-outer-name,unspecified-encoding
# pylint:disable=attribute-defined-outside-init,too-many-arguments
# pylint:disable=consider-using-f-string

import configparser
import errno
Expand Down
8 changes: 7 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
# and then run "tox" from this directory.

[tox]
envlist = py{37,38,39,310,311,py3}-{linux,windows}
envlist =
py{37,38,39,310,311,py3}-{linux,windows}
pylint
skip_missing_interpreters = True

[flake8]
Expand All @@ -28,6 +30,7 @@ PLATFORM =
deps =
flake8
flake8-docstrings
pylint
wheel>=0.35
setuptools>=50
virtualenv>=20
Expand Down Expand Up @@ -55,5 +58,8 @@ commands =
python test/run_pyflakes_src.py
pyflakes test
flake8 git_version.py versioneer.py
pylint versioneer.py
pycodestyle --max-line-length=88 git_version.py versioneer.py
!pypy3: mypy git_version.py

[testenv:pylint]