Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
18 lines (12 loc) · 696 Bytes

File metadata and controls

18 lines (12 loc) · 696 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""Steps 3 and 4 for test_it_avoids_upcasing_unrelated_environment_variable_names."""
import subprocess
import sys
# Step 3a: Import the module, in case that upcases the environment variable name.
import git
_, working_dir, env_var_name = sys.argv
# Step 3b: Use Git.execute explicitly, in case that upcases the environment variable.
# (Importing git should be enough, but this ensures Git.execute is called.)
repo = git.Repo(working_dir) # Hold the reference.
git.Git(repo.working_dir).execute(["git", "version"])
# Step 4: Create the non-Python grandchild that accesses the variable case-sensitively.
print(subprocess.check_output(["set", env_var_name], shell=True, text=True))
Morty Proxy This is a proxified and sanitized view of the page, visit original site.