Skip to content
Snippets Groups Projects
Commit baaada86 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[scripts][ci/bdt] Move setting of PYTHONUNBUFFERED to root of scripts so set for all executions

parent 9e61dbbe
No related branches found
No related tags found
No related merge requests found
Pipeline #26216 passed
...@@ -67,3 +67,4 @@ def main(): ...@@ -67,3 +67,4 @@ def main():
# certificate setup: required for gitlab API interaction # certificate setup: required for gitlab API interaction
set_environment('SSL_CERT_FILE', CACERT, os.environ) set_environment('SSL_CERT_FILE', CACERT, os.environ)
set_environment('REQUESTS_CA_BUNDLE', CACERT, os.environ) set_environment('REQUESTS_CA_BUNDLE', CACERT, os.environ)
set_environment('PYTHONUNBUFFERED', '1', os.environ)
...@@ -27,9 +27,7 @@ def ci(): ...@@ -27,9 +27,7 @@ def ci():
attempt to run these commands in your own installation. Unexpected errors attempt to run these commands in your own installation. Unexpected errors
may occur. may occur.
""" """
# ensure messages don't get garbled at the output on the CI logs pass
from ..bootstrap import set_environment
set_environment('PYTHONUNBUFFERED', '1', os.environ)
@ci.command(epilog=''' @ci.command(epilog='''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment