Closed
Description
when I use pytest-html in docker (with gitlab-ci) it needs a lot of environment variables set, some holds token and passwords. I do not want to show in my jenkins report to a wider audience.
It seems they are collected in the very first test, so adding this to a test is working using the request autofixture:
# remove eventual gitlab settings
for k in list(request.config._metadata.keys()):
if re.search(r'^(GITLAB_|CI_)', k):
del request.config._metadata[k]
But I like to do it in conftest.py