diff --git a/filebeat/magefile.go b/filebeat/magefile.go index cc748f750c3b..c806cf34c67a 100644 --- a/filebeat/magefile.go +++ b/filebeat/magefile.go @@ -200,7 +200,7 @@ func GoIntegTest(ctx context.Context) error { // Use TESTING_FILEBEAT_FILESETS=fileset[,fileset] to limit what fileset to test. func PythonIntegTest(ctx context.Context) error { if !devtools.IsInIntegTestEnv() { - mg.Deps(Fields, devtools.KibanaDashboards) + mg.Deps(Fields, Dashboards) } runner, err := devtools.NewDockerIntegrationRunner(append(devtools.ListMatchingEnvVars("TESTING_FILEBEAT_", "PYTEST_"), "GENERATE")...) if err != nil { diff --git a/x-pack/filebeat/magefile.go b/x-pack/filebeat/magefile.go index 344f105b2197..499b106a93ef 100644 --- a/x-pack/filebeat/magefile.go +++ b/x-pack/filebeat/magefile.go @@ -174,7 +174,7 @@ func GoIntegTest(ctx context.Context) error { // Use TESTING_FILEBEAT_FILESETS=fileset[,fileset] to limit what fileset to test. func PythonIntegTest(ctx context.Context) error { if !devtools.IsInIntegTestEnv() { - mg.Deps(Fields) + mg.Deps(Fields, Dashboards) } runner, err := devtools.NewDockerIntegrationRunner(append(devtools.ListMatchingEnvVars("TESTING_FILEBEAT_", "PYTEST_"), "GENERATE")...) if err != nil {