Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
geomultisens
pyrsr
Commits
ae9e93e8
Commit
ae9e93e8
authored
Sep 07, 2021
by
Daniel Scheffler
Browse files
'make lint' now also directly prints the logs.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
025f3db5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
ae9e93e8
...
...
@@ -54,9 +54,12 @@ clean-test: ## remove test and coverage artifacts
rm
-fr
nosetests.xml
lint
:
##
check style with flake8
flake8
--max-line-length
=
120 pyrsr tests
>
./tests/linting/flake8.log
pycodestyle pyrsr
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
-
pydocstyle pyrsr
>
./tests/linting/pydocstyle.log
flake8
--max-line-length
=
120 pyrsr tests
>
./tests/linting/flake8.log
||
\
(
cat
./tests/linting/flake8.log
&&
exit
1
)
pycodestyle pyrsr
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
||
\
(
cat
./tests/linting/pycodestyle.log
&&
exit
1
)
-
pydocstyle pyrsr
>
./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
.
Attach a 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