Open
Conversation
8 tasks
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.
Archived Defunct
py-algorand-sdkPR # 429Formerly: algorand#429
I'm keeping for my own future testing purposes
Should I keep these changes around and merge
harness_overwrite.py? This tinkering work grew out of an investigation of the downstream effects of this go-algorand PR: algorand/go-algorand#4951Arguments For and Against Merging the PR
up.shas similar as possible across all 4 SDK'sgo-algorand-even a little- is worthwhileQ: What does
harness_overwrite.pydo?It makes it slightly easier locally to mod environments that the test harness needs. In particular
INTERACTIVE_TESTING_ENVIRONMENT=1in.test-envmake harnessand follow the prompts.here are what the prompts look like
Then I entered the "typical choice" and proceeded with the next prompts:
Q: What are the implications for
harness_overwrite.pyin C.I.?As long as one remembers not to merge in
INTERACTIVE_TESTING_ENVIRONMENT=1in.test-env,C.I. will continue running as before. In order to run the same override environment in C.I., you
need to take the following steps:
test-harness/.env.envfile starting fromTYPE=...all the way to the end into.test-envINTERACTIVE_TESTING_ENVIRONMENT=0andOVERWRITE_TESTING_ENVIRONMENT=1C.I. should now run against the new harness env variables.