Skip to content
This repository has been archived by the owner on Mar 24, 2023. It is now read-only.

Commit

Permalink
metadata test no longer fetches from upstream, only uses edit
Browse files Browse the repository at this point in the history
the entitlements of the customer changed, and this will prevent future breakage
  • Loading branch information
laverya committed Jun 19, 2019
1 parent 4019075 commit cab8779
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions integration/init_app/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ type TestMetadata struct {
// debugging
SkipCleanup bool `yaml:"skip_cleanup"`
SkipEdit bool `yaml:"skip_edit"`
SkipInit bool `yaml:"skip_init"`
}

func TestInitReplicatedApp(t *testing.T) {
Expand Down Expand Up @@ -99,6 +100,10 @@ var _ = Describe("ship init replicated.app/...", func() {
}, 20)

It("Should output files matching those expected when communicating with the graphql api", func() {
if testMetadata.SkipInit {
Skip("this test case is set to skip init tests")
return
}

upstream := "staging.replicated.app/some-cool-ci-tool"

Expand Down
1 change: 1 addition & 0 deletions integration/init_app/license-info/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ replacements:
"signature.*" : "signature: replaced signature"
skip_cleanup: false
skip_edit: false
skip_init: true

0 comments on commit cab8779

Please sign in to comment.