mirror of
https://github.com/prometheus/prometheus.git
synced 2026-06-09 00:22:19 -04:00
Merge pull request #17300 from prometheus/beorn7/testing
tsdb: Disable more tests on MS Windows
This commit is contained in:
commit
dc5108abb5
1 changed files with 1 additions and 1 deletions
|
|
@ -1988,7 +1988,7 @@ func TestDelayedCompaction(t *testing.T) {
|
|||
|
||||
for _, c := range cases {
|
||||
t.Run(c.name, func(t *testing.T) {
|
||||
if c.compactionDelay > 0 && runtime.GOOS == "windows" {
|
||||
if runtime.GOOS == "windows" {
|
||||
t.Skip("Time imprecision on windows makes the test flaky, see https://github.com/prometheus/prometheus/issues/16450")
|
||||
}
|
||||
t.Parallel()
|
||||
|
|
|
|||
Loading…
Reference in a new issue