Skip to content

Commit 5c2358f

Browse files
committed
fix issue with installation
1 parent d7f9c01 commit 5c2358f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/service-library/tests/fastapi/test_tracing.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import importlib
55
import random
66
import string
7-
from collections.abc import Callable
8-
from typing import Any, Iterator
7+
from collections.abc import Callable, Iterator
8+
from typing import Any
99

1010
import pip
1111
import pytest
@@ -115,6 +115,9 @@ def manage_package(request):
115115
uninstall_package(package)
116116

117117

118+
@pytest.mark.skip(
119+
reason="this test installs always the latest version of the package which creates conflicts."
120+
)
118121
@pytest.mark.parametrize(
119122
"tracing_settings_in, manage_package",
120123
[

0 commit comments

Comments
 (0)