-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fix test #142
Merged
Fix test #142
Changes from all commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
a521d0a
fix test
kp-cat 43493e6
comment out block test
kp-cat afafa25
remove commented block
kp-cat 8bc5f11
async: false test comment
kp-cat 6d21c8d
comment out block test
kp-cat e69992c
test trace
kp-cat da24d76
validate sdk integration test turned off
kp-cat 14fb99d
remove trace from github CI
kp-cat 17f99b3
block test is back
kp-cat 18d442d
- block test + test trace
kp-cat 9430643
print Registry entry
kp-cat 78c48ac
add registry items to warning message
kp-cat 9784b11
message fix
kp-cat 0b7fcd6
test finished log
kp-cat 361bcaf
allow IO.puts
kp-cat 03938e6
print registry
kp-cat fff2c50
clear registry before all test
kp-cat 67ebd2c
add extra print_registry_contents
kp-cat f85f685
cleanup
kp-cat 716f9c3
move block test into integration test
kp-cat 20e1260
fix module in integration_test
kp-cat 283b421
revert clear_registry + inline using_block_test
kp-cat d093a1e
run CI tests with max-cases 1
kp-cat b7dd1c4
run CI integration tests with max-cases 1
kp-cat 5b76423
CI: merge coverall reports
kp-cat 877ed28
remove max-cases 1
kp-cat 1e1716c
Revert "remove max-cases 1"
kp-cat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
--max-cases 1
has no effect here. ExUnit will runasync: true
modules in parallel with each other, but runs the tests within each module in series. Since there is only one module (aka case) with theintegration
tag, there will only be one case being run no matter what.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.
You right but If I remove
--max-cases 1
, it seems the integration test can be broken again 😒I'll just keep it like this.