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
EnMAP
sensormapgeo
Commits
6df5c8d7
Commit
6df5c8d7
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
8c90e586
Pipeline
#27288
canceled with stages
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
HISTORY.rst
View file @
6df5c8d7
...
...
@@ -6,6 +6,7 @@ History
-------------------
* CI now uses Mambaforge. Revised test_sensormapgeo_install CI job.
* 'make lint' now also directly prints the logs.
0.4.8 (2020-02-08)
...
...
Makefile
View file @
6df5c8d7
...
...
@@ -52,9 +52,12 @@ clean-test: ## remove test and coverage artifacts
rm
-fr
nosetests.xml
lint
:
##
check style with flake8
flake8
--max-line-length
=
120 sensormapgeo tests
>
./tests/linting/flake8.log
pycodestyle sensormapgeo
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
-
pydocstyle sensormapgeo
>
./tests/linting/pydocstyle.log
flake8
--max-line-length
=
120 sensormapgeo tests
>
./tests/linting/flake8.log
||
\
(
cat
./tests/linting/flake8.log
&&
exit
1
)
pycodestyle sensormapgeo
--exclude
=
"*.ipynb,*.ipynb*"
--max-line-length
=
120
>
./tests/linting/pycodestyle.log
||
\
(
cat
./tests/linting/pycodestyle.log
&&
exit
1
)
-
pydocstyle sensormapgeo
>
./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