diff --git a/dev-tools/mage/pytest.go b/dev-tools/mage/pytest.go index f933300f935b..9c85bdb9f271 100644 --- a/dev-tools/mage/pytest.go +++ b/dev-tools/mage/pytest.go @@ -179,6 +179,9 @@ func PythonTestForModule(params PythonTestArgs) error { params.Files = []string{ fmt.Sprintf("module/%s/test_*.py", module), fmt.Sprintf("module/%s/*/test_*.py", module), + + // Run always the base tests, that include tests for module dashboards. + "tests/system/test*_base.py", } params.TestName += "-" + module }