We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e0a21 commit 0340bbaCopy full SHA for 0340bba
internal/utils/files.go
@@ -62,7 +62,7 @@ func LoadSuitesFromPath(path string) ([]tests.Suite, error) {
62
63
filePath := filepath.Join(absPath, file.Name())
64
// Check if the file is a YAML file
65
- if !file.IsDir() && filepath.Ext(filePath) == ".yaml" {
+ if !file.IsDir() && file.Name() == "suite.yaml" {
66
data, err := os.ReadFile(filePath)
67
if err != nil {
68
return []tests.Suite{}, fmt.Errorf("failed to read file %s: %v", filePath, err)
0 commit comments