-
Notifications
You must be signed in to change notification settings - Fork 39
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
Remove defaulting working_dir
to ./
.
#915
Merged
Merged
Conversation
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 was referenced Jun 18, 2024
7abc53f
to
a0513d9
Compare
79c190b
to
eb17c39
Compare
a0513d9
to
bd55a56
Compare
eb17c39
to
d649fdd
Compare
bd55a56
to
0495161
Compare
d649fdd
to
a73815e
Compare
0495161
to
7c7befc
Compare
43b3c6c
to
52f4309
Compare
7c7befc
to
3f27e5e
Compare
52f4309
to
22f29d4
Compare
3f27e5e
to
cf4d086
Compare
22f29d4
to
9fb1a43
Compare
cf4d086
to
5609234
Compare
9fb1a43
to
5996f96
Compare
@@ -34,7 +34,7 @@ def env( | |||
env_vars (Dict or str): Dictionary of environment variables, or relative path to .env file containing | |||
environment variables. (Default: {}) | |||
working_dir (str or Path): Working directory of the environment, to be loaded onto the system. | |||
(Default: "./") | |||
(Default: None) |
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.
Maybe mark as deprecated?
dongreenberg
approved these changes
Jun 25, 2024
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.
Amazing
2434d0c
to
a38661e
Compare
Base automatically changed from
06-25-Fix_bug_in__run_commands_with_ssh_where_node_is_not_set
to
main
June 25, 2024 19:34
5996f96
to
71a9162
Compare
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.
If you pass working_dir as ./, it'll still work and run the detection algorithm. However, omit it by default, as when the module or function is actually sent to the env, then the working_dir is automatically added based on the file where the code was.