-
Notifications
You must be signed in to change notification settings - Fork 8
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
turn config into a passed over immutable object #6
Comments
i learned that all tests monkeypatch a config object in a fragile way, that one is going to be a bummer |
I would love to discuss a better way to do testing of different configs. I wanted to be able to run tests like: with config(hooks=["build"]):
test_my_hook() The monkey patching could be done a bit less fragile by setting the |
Mostly that when trying to remove the thread local things rapidly started to fall apart Unfortunately i also observed that the chosen argument parsing library doesn't seem to support or even try enable passing extra objects It's simply most fragile to have a single global configuration object that's being monkey patched into shape and personally i'd much prefer something free of actions at a distance when Hacking on stuff |
Please keep the issue focussed to a single item. I've chosen I feel your pain with regards to the config setup. I simply don't know a better way. I don't want to pass the config through every single function call, so it will have to be accessed through some global. Then to make things work in parallel with different configs, using |
a key reason why i strongly prefer never to use globals as config is, that it prevents potential bugs like loading a default argument to a function from a global config means if the config is not properly considered stuff ends up wrong |
supports #3
removes threadlocals
The text was updated successfully, but these errors were encountered: