Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
sensormapgeo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EnMAP
sensormapgeo
Commits
6df5c8d7
Commit
6df5c8d7
authored
3 years ago
by
Daniel Scheffler
Browse files
Options
Downloads
Patches
Plain Diff
'make lint' now also directly prints the logs.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
8c90e586
No related branches found
No related tags found
No related merge requests found
Pipeline
#27288
canceled
3 years ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
HISTORY.rst
+1
-0
1 addition, 0 deletions
HISTORY.rst
Makefile
+6
-3
6 additions, 3 deletions
Makefile
with
7 additions
and
3 deletions
HISTORY.rst
+
1
−
0
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)
...
...
This diff is collapsed.
Click to expand it.
Makefile
+
6
−
3
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment