Skip to content

Commit

Permalink
fix filebeat pythonIntegtest deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kvch committed Oct 21, 2021
1 parent eace655 commit 7c6d906
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion filebeat/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion x-pack/filebeat/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 7c6d906

Please sign in to comment.