-
Notifications
You must be signed in to change notification settings - Fork 748
Remove Integration Monad #6346
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
Merged
Merged
Remove Integration Monad #6346
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
0216ae2
Implement `liftToIntegration`
Jimbo4350 4de166b
Implement mkConfig and mkConfigAbs
Jimbo4350 eb8a918
Remove runTestnet usage in runCardanoOptions and testnetRoutine from
Jimbo4350 e4b06ca
Implement liftIOAnnotated which annotates exceptions with a callstack
Jimbo4350 5c7ec3d
Remove testnetRoutine
Jimbo4350 cdfd481
Implement asyncRegister_
Jimbo4350 f30d525
Add hprop_asyncRegister_sanity_check
Jimbo4350 95580a9
Remove Integration monad return type from createTestnetEnv and
Jimbo4350 602f1fa
Remove MonadTest constraint from createSPOGenesisAndFiles
Jimbo4350 8878fe0
Remove MonadTest constraint from startNode and startLedgerNewEpochSta…
Jimbo4350 1d01c41
Remove MonadTest constraints from assertion functions
Jimbo4350 e25a64a
Propagate liftToIntegration and liftIOAnnotated
Jimbo4350 9b629d3
Fix build issues
Jimbo4350 5d73464
Review changes
Jimbo4350 ca0d30a
Replace liftIO with liftIOAnnotated
Jimbo4350 aa69c66
Fix infinite loop
carbolymer 3aaad0b
Fix liftToIntegration to report the exception location to Hedgehog
carbolymer 8a4902e
Rebase changes
Jimbo4350 a89638b
Remove unnecessary function
Jimbo4350 b709f04
Update `createDirectoryIfMissingNew`
Jimbo4350 7d2962f
Create log directory if it does not exist
Jimbo4350 8ad1337
Final fix
Jimbo4350 8cf34ed
Review fixes
Jimbo4350 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 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
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
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
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
Oops, something went wrong.
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.
What's the advantage over:
?
Uh oh!
There was an error while loading. Please reload this page.
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.
None. This was from a previous iteration of something I was trying.With my version of
liftToIntegrationit is needed to pass the resource map. However I haven't tried with your version ofliftToIntegration.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.
Changing of
liftToIntegrationmay be worth exploring. I think you are not using the resource map actually anywhere, are you?