-
Notifications
You must be signed in to change notification settings - Fork 127
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
SNOW-921006 Introduce wiremock #1300
base: master
Are you sure you want to change the base?
Conversation
f17ab6d
to
575b51d
Compare
.github/workflows/build-test.yml
Outdated
@@ -26,8 +26,6 @@ concurrency: | |||
jobs: | |||
lint: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
fail-fast: false |
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.
why do we remove this line?
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.
Actually, you are right. I misunderstood this section. Good catch!
575b51d
to
d6216ca
Compare
d6216ca
to
a510b4e
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1300 +/- ##
==========================================
+ Coverage 82.16% 82.19% +0.02%
==========================================
Files 55 55
Lines 13634 13634
==========================================
+ Hits 11203 11206 +3
+ Misses 2431 2428 -3 ☔ View full report in Codecov by Sentry. |
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.
The name of this file suggests that we are testing wiremock, but I assume that this is a base utility class for tests that use wiremock, right?
func newWiremock() *wiremockClient { | ||
return &wiremockClient{ | ||
host: "127.0.0.1", | ||
port: 14355, |
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.
perhaps it would be better to pass this as an ENV VAR in test scripsts?
Description
SNOW-921006 Introduce wiremock
Checklist