mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
lib/storage: disable deduplication after dedup tests are complete
The rest of tests expect that the de-duplication is disabled.
This commit is contained in:
parent
8ed0d5471a
commit
e0c6da8e2a
1 changed files with 9 additions and 0 deletions
|
@ -7,6 +7,9 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGetMinDelta(t *testing.T) {
|
func TestGetMinDelta(t *testing.T) {
|
||||||
|
// Disable deduplication before exit, since the rest of tests expect disabled dedup.
|
||||||
|
defer SetMinScrapeIntervalForDeduplication(0)
|
||||||
|
|
||||||
f := func(scrapeInterval time.Duration, dExpected int64) {
|
f := func(scrapeInterval time.Duration, dExpected int64) {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
SetMinScrapeIntervalForDeduplication(scrapeInterval)
|
SetMinScrapeIntervalForDeduplication(scrapeInterval)
|
||||||
|
@ -25,6 +28,9 @@ func TestGetMinDelta(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDeduplicateSamples(t *testing.T) {
|
func TestDeduplicateSamples(t *testing.T) {
|
||||||
|
// Disable deduplication before exit, since the rest of tests expect disabled dedup.
|
||||||
|
defer SetMinScrapeIntervalForDeduplication(0)
|
||||||
|
|
||||||
f := func(scrapeInterval time.Duration, timestamps, timestampsExpected []int64) {
|
f := func(scrapeInterval time.Duration, timestamps, timestampsExpected []int64) {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
SetMinScrapeIntervalForDeduplication(scrapeInterval)
|
SetMinScrapeIntervalForDeduplication(scrapeInterval)
|
||||||
|
@ -72,6 +78,9 @@ func TestDeduplicateSamples(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDeduplicateSamplesDuringMerge(t *testing.T) {
|
func TestDeduplicateSamplesDuringMerge(t *testing.T) {
|
||||||
|
// Disable deduplication before exit, since the rest of tests expect disabled dedup.
|
||||||
|
defer SetMinScrapeIntervalForDeduplication(0)
|
||||||
|
|
||||||
f := func(scrapeInterval time.Duration, timestamps, timestampsExpected []int64) {
|
f := func(scrapeInterval time.Duration, timestamps, timestampsExpected []int64) {
|
||||||
t.Helper()
|
t.Helper()
|
||||||
SetMinScrapeIntervalForDeduplication(scrapeInterval)
|
SetMinScrapeIntervalForDeduplication(scrapeInterval)
|
||||||
|
|
Loading…
Reference in a new issue