Skip to content

Commit

Permalink
[eclipse-kanto#44] Require no error on setting up the test
Browse files Browse the repository at this point in the history
Signed-off-by: Dimiter Georgiev <dimiter.georgiev@bosch.io>
  • Loading branch information
Dimiter Georgiev committed Oct 25, 2022
1 parent 4cab5c0 commit 62a270d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion integration/connector_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ func (suite *ConnectorSuite) SetupSuite() {
suite.T().Log(getConfigHelp(*cfg, envVariablesPrefix))

if err := initConfigFromEnv(cfg, envVariablesPrefix); err != nil {
suite.T().Skip(err)
suite.T().Fail()
suite.T().Fatal(err)
}

suite.T().Logf("test config: %+v", *cfg)
Expand Down

0 comments on commit 62a270d

Please sign in to comment.