diff --git a/collector/pkg/version/version.go b/collector/pkg/version/version.go index e64fc31..3e8773b 100644 --- a/collector/pkg/version/version.go +++ b/collector/pkg/version/version.go @@ -2,4 +2,4 @@ package version // VERSION is the app-global version string, which will be replaced with a // new value during packaging -const VERSION = "1.0.0" +const VERSION = "0.1.0" diff --git a/packagr.yml b/packagr.yml index 9f4fc8e..a6ea501 100644 --- a/packagr.yml +++ b/packagr.yml @@ -10,6 +10,7 @@ engine_version_metadata_path: 'collector/pkg/version/version.go' engine_cmd_test: 'go test -v -tags "static" $(go list ./... | grep -v /vendor/)' engine_golang_package_path: 'github.com/analogj/scrutiny' scm_enable_branch_cleanup: true +engine_disable_lint: true scm_release_assets: - local_path: scrutiny-web-linux-amd64 artifact_name: scrutiny-web-linux-amd64 diff --git a/webapp/backend/pkg/models/db/smart_test.go b/webapp/backend/pkg/models/db/smart_test.go index c24a83b..2fd4a58 100644 --- a/webapp/backend/pkg/models/db/smart_test.go +++ b/webapp/backend/pkg/models/db/smart_test.go @@ -30,7 +30,7 @@ func TestFromCollectorSmartInfo(t *testing.T) { //assert require.NoError(t, err) require.Equal(t, smartMdl.DeviceWWN, "WWN-test") - require.Equal(t, smartMdl.SmartStatus, "PASSED") + require.Equal(t, smartMdl.SmartStatus, "passed") //check that temperature was correctly parsed for _, attr := range smartMdl.SmartAttributes { diff --git a/webapp/backend/pkg/version/version.go b/webapp/backend/pkg/version/version.go index e64fc31..3e8773b 100644 --- a/webapp/backend/pkg/version/version.go +++ b/webapp/backend/pkg/version/version.go @@ -2,4 +2,4 @@ package version // VERSION is the app-global version string, which will be replaced with a // new value during packaging -const VERSION = "1.0.0" +const VERSION = "0.1.0"