We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17798cc commit f3bf668Copy full SHA for f3bf668
packages/pytest-simcore/src/pytest_simcore/docker_compose.py
@@ -118,6 +118,10 @@ def env_file_for_testing(
118
file=fh,
119
)
120
for key, value in sorted(testing_environ_vars.items()):
121
+ # ensure OpenTelemetry is not enabled
122
+ if key.startswith("TRACING_") or key.endswith("_TRACING"):
123
+ continue
124
+
125
# NOTE: python-dotenv parses JSON encoded strings correctly, but
126
# writing them back shows an issue. if the original ENV is something like MY_ENV='{"correct": "encodedjson"}'
127
# it goes to MY_ENV={"incorrect": "encodedjson"}!
0 commit comments