Skip to content
Snippets Groups Projects
Commit c6c0a064 authored by Georgy Moshkin's avatar Georgy Moshkin :speech_balloon:
Browse files

chore: set PICODATA_LOG_LEVEL=verbose in tests

parent e1b3a6af
No related branches found
No related tags found
1 merge request!224chore: set --log-level=verbose in tests
Pipeline #10950 passed
......@@ -307,9 +307,13 @@ class Instance:
if peers != []:
self.peers = map(lambda i: i.listen, peers)
env = self.env
if not os.environ.get("PICODATA_LOG_LEVEL") and "PICODATA_LOG_LEVEL" not in env:
env.update(PICODATA_LOG_LEVEL="verbose")
self.process = subprocess.Popen(
self.command,
env=self.env or None,
env=env or None,
stdin=subprocess.DEVNULL,
start_new_session=True,
stdout=subprocess.PIPE,
......
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