Thanks to visit codestin.com Credit goes to github.com
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 9d0834d commit 1cc23e0Copy full SHA for 1cc23e0
opentelemetry-api/tests/configuration/test_configuration.py
@@ -13,6 +13,7 @@
13
# limitations under the License.
14
# pylint: disable-all
15
16
+from sys import platform
17
from unittest import TestCase
18
from unittest.mock import patch
19
@@ -35,7 +36,7 @@ def test_singleton(self) -> None:
35
36
{
37
"OTEL_PYTHON_METER_PROVIDER": "meter_provider",
38
"OTEL_PYTHON_TRACER_PROVIDER": "tracer_provider",
- "OTEL_OThER": "other",
39
+ "OTEL_OTHER" if platform == "windows" else "OTEL_OThER": "other",
40
"OTEL_OTHER_7": "other_7",
41
"OPENTELEMETRY_PTHON_TRACEX_PROVIDER": "tracex_provider",
42
},
0 commit comments