Skip to content

Commit f4fb481

Browse files
committed
remove from contrib-instrumentations as well
Signed-off-by: emdneto <[email protected]>
1 parent 222cc43 commit f4fb481

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

scripts/generate_instrumentation_metapackage.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,15 @@
2929
root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
3030
base_instrumentation_path = os.path.join(root_path, "instrumentation")
3131

32+
packages_to_exclude = [
33+
"opentelemetry-instrumentation-test",
34+
]
35+
3236

3337
def get_instrumentation_packages():
3438
for instrumentation in sorted(os.listdir(base_instrumentation_path)):
39+
if instrumentation in packages_to_exclude:
40+
continue
3541
instrumentation_path = os.path.join(
3642
base_instrumentation_path, instrumentation
3743
)

0 commit comments

Comments
 (0)