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 222cc43 commit f4fb481Copy full SHA for f4fb481
scripts/generate_instrumentation_metapackage.py
@@ -29,9 +29,15 @@
29
root_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
30
base_instrumentation_path = os.path.join(root_path, "instrumentation")
31
32
+packages_to_exclude = [
33
+ "opentelemetry-instrumentation-test",
34
+]
35
+
36
37
def get_instrumentation_packages():
38
for instrumentation in sorted(os.listdir(base_instrumentation_path)):
39
+ if instrumentation in packages_to_exclude:
40
+ continue
41
instrumentation_path = os.path.join(
42
base_instrumentation_path, instrumentation
43
)
0 commit comments