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
Daniel Scheffler
py_tools_ds
Commits
f71ab8d1
Commit
f71ab8d1
authored
Nov 17, 2020
by
Daniel Scheffler
Browse files
Fixed issue of remaining coverage artifacts after running 'make clean-test.
Signed-off-by:
Daniel Scheffler
<
danschef@gfz-potsdam.de
>
parent
9c15a700
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
f71ab8d1
...
...
@@ -43,10 +43,10 @@ clean-pyc: ## remove Python file artifacts
find
.
-name
'__pycache__'
-exec
rm
-fr
{}
+
clean-test
:
##
remove test and coverage artifacts
## don't
include '
coverage erase
' lib
here because
clean-test is also executed during package setup and coverage is
##
only a test requirement
## don't
call
coverage erase here because
make install calls make clean which calls make clean-test
##
-> since make install should run without the test requirements we can't use coverage erase here
rm
-fr
.tox/
rm
-f
.coverage
rm
-f
r
.coverage
.
*
rm
-fr
htmlcov/
rm
-fr
nosetests.html
rm
-fr
nosetests.xml
...
...
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