Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 1022 Bytes

CONTRIBUTING.md

File metadata and controls

32 lines (20 loc) · 1022 Bytes

Contributing

Issues and PRs are welcome!

Issues and Improvements

When you find an Issue or Improvement, please chech first if it already occurs otherwise create a New Issue

If you have a Issue related to security, please follow our Security Policy

Developing

Before start developing this plugin, you must have Go >= 1.23 installed, and run:

git clone [email protected]:helm-unittest/helm-unittest.git
cd helm-unittest

And please make CI passed when request a PR which would check following things:

  • gofmt no changes needed. Please run gofmt -w -s . before you commit.
  • go test ./pkg/unittest/... passed.

In some cases you might need to manually fix the tests in *_test.go. If the snapshot tests (of the plugin's test code) failed, you need to run:

UPDATE_SNAPSHOTS=true go test ./...

This update the snapshot cache file and please add them before you commit.