-
Notifications
You must be signed in to change notification settings - Fork 44
chore: improve code coverage #350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestDiscoverPlugins(t *testing.T) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mabdh I need some context arounf plugins/external
directory, around its usecase, and requirements. Anything in docs/previous-PR/issue/discussion??
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@GrayFlash I don't really aware of the docs about it, maybe @ravisuhag or @StewartJingga has more context with that.
@@ -1,3 +1,6 @@ | |||
//go:build plugins | |||
// +build plugins | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added plugins tags for tableau and bigquery tests, because we test extractors separately.
cc @mabdh
@mabdh @StewartJingga @scortier any suggestions for further improving the code coverage?? Most of the files with low coverage that I can see at the moment are the ones where we can't test a given set of functions with mocks or may require setting up a service (like bigquery, tableau, etc). |
@GrayFlash this is already good enough to have 75 % code coverage. Have you seen the coverage report here? https://coveralls.io/github/odpf/meteor?branch=improve-code-coverage for example:
|
@mabdh have worked on increasing the coverage across the |
closes #348