-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
63 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,7 @@ dist/ | |
setup.py | ||
*.spec | ||
snap | ||
coverage.xml | ||
|
||
# Logs | ||
logs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,38 @@ | ||
{ | ||
"type": "python", | ||
"venvActivate": "./.venv/bin/activate", | ||
"steps": [ | ||
{ | ||
"name": "autoflake", | ||
"command": "autoflake -ri --remove-unused-variable --ignore-init-module-imports --remove-all-unused-imports graphinder tests" | ||
}, | ||
{ | ||
"name": "isort", | ||
"command": "isort -m 9 --line-length 159 graphinder tests" | ||
}, | ||
{ | ||
"name": "unify", | ||
"command": "unify -ri graphinder tests" | ||
}, | ||
{ | ||
"name": "docformatter", | ||
"command": "docformatter --wrap-summaries 160 --wrap-descriptions 160 -ri graphinder tests" | ||
}, | ||
{ | ||
"name": "yapf", | ||
"command": "yapf -ri graphinder tests" | ||
}, | ||
{ | ||
"name": "pylint", | ||
"command": "pylint --load-plugins pylint_quotes graphinder tests" | ||
}, | ||
{ | ||
"name": "mypy", | ||
"command": "mypy graphinder tests" | ||
}, | ||
{ | ||
"name": "pytest", | ||
"command": "pytest tests/unit" | ||
} | ||
] | ||
"type": "python", | ||
"venvActivate": "./.venv/bin/activate", | ||
"steps": [ | ||
{ | ||
"name": "autoflake", | ||
"command": "autoflake -ri --remove-unused-variable --ignore-init-module-imports --remove-all-unused-imports graphinder tests" | ||
}, | ||
{ | ||
"name": "isort", | ||
"command": "isort -m 9 --line-length 159 graphinder tests" | ||
}, | ||
{ | ||
"name": "unify", | ||
"command": "unify -ri graphinder tests" | ||
}, | ||
{ | ||
"name": "docformatter", | ||
"command": "docformatter --wrap-summaries 160 --wrap-descriptions 160 -ri graphinder tests" | ||
}, | ||
{ | ||
"name": "yapf", | ||
"command": "yapf -ri graphinder tests" | ||
}, | ||
{ | ||
"name": "pylint", | ||
"command": "pylint --load-plugins pylint_quotes graphinder tests" | ||
}, | ||
{ | ||
"name": "mypy", | ||
"command": "mypy graphinder tests" | ||
}, | ||
{ | ||
"name": "pytest", | ||
"command": "pytest --reruns=3 tests/unit" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
from datetime import date | ||
|
||
__version__ = '1.0.30' | ||
__version__ = '1.0.31' | ||
|
||
print( | ||
r""" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters