Skip to content

Commit

Permalink
Don't run version matrix in tests (#360)
Browse files Browse the repository at this point in the history
* Don't run version matrix in tests

* Add hack/tools to .gitignore

 - It's used by the .devcontainer and .dev scripts.
  • Loading branch information
matthchr authored Jan 5, 2021
1 parent 4b67cd3 commit 7dfd34d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,5 @@ dist
template.json

.tiltbuild

hack/tools
3 changes: 2 additions & 1 deletion hack/generator/pkg/codegen/codegen_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,8 @@ func runGoldenTest(t *testing.T, path string, testConfig GoldenTestConfig) {
pipeline = append(pipeline, loadTestSchemaIntoTypes(idFactory, cfg, testSchemaLoader))
} else if stage.HasId("deleteGenerated") ||
stage.HasId("rogueCheck") ||
stage.HasId("createStorage") {
stage.HasId("createStorage") ||
stage.HasId("reportTypesAndVersions") {
continue // Skip this
} else if stage.HasId("exportPackages") {
pipeline = append(pipeline, exportPackagesTestPipelineStage)
Expand Down
7 changes: 0 additions & 7 deletions hack/generator/pkg/codegen/test/versions_matrix.md

This file was deleted.

0 comments on commit 7dfd34d

Please sign in to comment.