Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Scheffler
py_tools_ds
Commits
03cefd35
Commit
03cefd35
authored
May 07, 2021
by
Daniel Scheffler
Browse files
Make lint now directly prints the logs in addition to writing log files.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
e01d4a4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
03cefd35
...
...
@@ -53,9 +53,12 @@ clean-test: ## remove test and coverage artifacts
rm
-fr
nosetests.xml
lint
:
##
check style with flake8
flake8
--max-line-length
=
120 py_tools_ds tests
>
./tests/linting/flake8.log
pycodestyle py_tools_ds
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
-
pydocstyle py_tools_ds
>
./tests/linting/pydocstyle.log
flake8
--max-line-length
=
120 py_tools_ds tests
>
./tests/linting/flake8.log
||
\
(
cat
./tests/linting/flake8.log
&&
exit
1
)
pycodestyle py_tools_ds
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
||
\
(
cat
./tests/linting/pycodestyle.log
&&
exit
1
)
-
pydocstyle py_tools_ds
>
./tests/linting/pydocstyle.log
||
\
(
cat
./tests/linting/pydocstyle.log
&&
exit
1
)
urlcheck
:
##
check for dead URLs
urlchecker check
.
--file-types
.py,.rst,.md,.json
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment