Wait on verify to complete before allowing tests to continue#38
Merged
andrewspinks merged 1 commit intoDiUS:masterfrom May 1, 2018
Merged
Wait on verify to complete before allowing tests to continue#38andrewspinks merged 1 commit intoDiUS:masterfrom
andrewspinks merged 1 commit intoDiUS:masterfrom
Conversation
…nt race condition
Codecov Report
@@ Coverage Diff @@
## master #38 +/- ##
==========================================
+ Coverage 91.12% 91.17% +0.04%
==========================================
Files 6 6
Lines 372 374 +2
==========================================
+ Hits 339 341 +2
Misses 33 33 |
Contributor
|
@epv44 Interesting! Thanks! |
|
Hello @andrewspinks , we were wondering when this patch might be released? Thanks! |
Contributor
|
@dexterteng3 Apologies, I forgot about this. 0.5.2 is now released. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While using
pact-consumer-swiftwe have seen flakey results in our pact tests. Upon investigation, it appears that:The call to pactVerificationService.verify asynchronously communicates with the server, and the run function will return before it's done. If a subsequent spec comes along and clears the interactions from the server, it will cause a race.