File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
inferred-spans/src/test/java/io/opentelemetry/contrib/inferredspans Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 66 - main
77 - release/*
88 pull_request :
9+ merge_group :
910 workflow_dispatch :
1011
12+ permissions :
13+ contents : read
14+
1115concurrency :
1216 group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
1317 cancel-in-progress : true
1418
15- permissions :
16- contents : read
17-
1819jobs :
1920 build :
2021 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 77
88import static io .opentelemetry .sdk .testing .assertj .OpenTelemetryAssertions .assertThat ;
99import static org .awaitility .Awaitility .await ;
10- import static org .junit .jupiter .api .condition .OS .LINUX ;
1110import static org .junit .jupiter .api .condition .OS .WINDOWS ;
1211
1312import io .opentelemetry .api .GlobalOpenTelemetry ;
3332import org .junit .jupiter .api .BeforeEach ;
3433import org .junit .jupiter .api .Test ;
3534import org .junit .jupiter .api .condition .DisabledOnOs ;
36- import org .junit .jupiter .api .condition .EnabledOnOs ;
3735import org .junit .jupiter .api .io .TempDir ;
3836
39- @ EnabledOnOs ( LINUX ) // Uses async-profiler, which is only supported on Linux
37+ @ DisabledOnOs ( WINDOWS ) // Uses async-profiler, which is not supported on Windows
4038public class InferredSpansAutoConfigTest {
4139
4240 @ BeforeEach
@@ -110,7 +108,6 @@ public void checkDisabledbyDefault() {
110108 }
111109
112110 @ DisabledOnOpenJ9
113- @ DisabledOnOs (WINDOWS )
114111 @ Test
115112 public void checkProfilerWorking () {
116113 try (AutoConfigTestProperties props =
You can’t perform that action at this time.
0 commit comments