From d8553c002e22f238226c32837393b5813d8ce0b7 Mon Sep 17 00:00:00 2001 From: Owen Nelson Date: Wed, 5 Oct 2022 13:42:38 -0700 Subject: [PATCH] test(flux): use vanilla flagger for fluxtest (#23762) * test(flux): set flux flagger in launcher * test(flux): use default flagger from vanilla * test(flux): unskip vectorized float tests * test(flux): remove redundant skips for already-tagged integration tests * test(flux): remove skips requiring `removeRedundantSortNodes` flag * test(flux): remove skips requiring `labelPolymorphism` flag --- cmd/influxd/launcher/launcher.go | 2 + etc/test-flux.sh | 103 ------------------------------- 2 files changed, 2 insertions(+), 103 deletions(-) diff --git a/cmd/influxd/launcher/launcher.go b/cmd/influxd/launcher/launcher.go index 2eb5099b61b..881956aad44 100644 --- a/cmd/influxd/launcher/launcher.go +++ b/cmd/influxd/launcher/launcher.go @@ -16,6 +16,7 @@ import ( "github.com/influxdata/flux" "github.com/influxdata/flux/dependencies/testing" "github.com/influxdata/flux/dependencies/url" + "github.com/influxdata/flux/execute/executetest" platform "github.com/influxdata/influxdb/v2" "github.com/influxdata/influxdb/v2/annotations" annotationTransport "github.com/influxdata/influxdb/v2/annotations/transport" @@ -413,6 +414,7 @@ func (m *Launcher) run(ctx context.Context, opts *InfluxdOpts) (err error) { dependencyList := []flux.Dependency{deps} if opts.Testing { + dependencyList = append(dependencyList, executetest.NewDefaultTestFlagger()) dependencyList = append(dependencyList, testing.FrameworkConfig{}) } diff --git a/etc/test-flux.sh b/etc/test-flux.sh index 428069b6512..02b193cfc49 100755 --- a/etc/test-flux.sh +++ b/etc/test-flux.sh @@ -33,103 +33,6 @@ build_test_harness() { skipped_tests() { doc=$(cat <