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
arosics
Commits
aa691427
Commit
aa691427
authored
Mar 11, 2021
by
Daniel Scheffler
Browse files
Make lint now directly prints its output in case of exceptions.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
2161ace8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
aa691427
...
...
@@ -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 arosics tests
>
./tests/linting/flake8.log
pycodestyle arosics
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
-
pydocstyle arosics
>
./tests/linting/pydocstyle.log
flake8
--max-line-length
=
120 arosics tests
>
./tests/linting/flake8.log
||
\
(
cat
./tests/linting/flake8.log
&&
exit
1
)
pycodestyle arosics
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
||
\
(
cat
./tests/linting/pycodestyle.log
&&
exit
1
)
-
pydocstyle arosics
>
./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