Skip to content

Commit

Permalink
fix(dependency-sorting): loops are ignored. stop testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Julius Daniel Herrera Glomm committed Mar 16, 2022
1 parent 65a68c9 commit dd4e629
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions server/events/project_finder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -720,38 +720,6 @@ projects:
destroyFlagSet: true,
expError: "",
},
{
description: "test dependency loop",
AtlantisYAML: `
version: 3
projects:
- autoplan:
enabled: true
when_modified:
- '*.hcl'
- '*.tf*'
- ../1/terragrunt.hcl
dir: dependency-test/2
- autoplan:
enabled: true
when_modified:
- '*.hcl'
- '*.tf*'
- ../2/terragrunt.hcl
dir: dependency-test/3
- autoplan:
enabled: true
when_modified:
- '*.hcl'
- '*.tf*'
- ../3/terragrunt.hcl
dir: dependency-test/1
`,
modified: []string{"dependency-test/1/terragrunt.hcl", "dependency-test/2/terragrunt.hcl", "dependency-test/3/terragrunt.hcl"},
expProjPaths: []string{},
destroyFlagSet: false,
expError: "topological sort failed",
},
}

for _, c := range cases {
Expand Down

0 comments on commit dd4e629

Please sign in to comment.