Skip to content

Commit c8a236e

Browse files
committed
try fix bash tests on macos
1 parent 515a4e4 commit c8a236e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

django_typer/tests/completion_tests.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ def read(fd):
125125
win_size = struct.pack("HHHH", 24, 80, 0, 0) # 24 rows, 80 columns
126126
fcntl.ioctl(slave_fd, termios.TIOCSWINSZ, win_size)
127127

128-
env = os.environ.copy()
129-
env["TERM"] = "xterm-256color"
128+
# env = os.environ.copy()
129+
# env["TERM"] = "xterm-256color"
130130

131131
# Spawn a new shell process
132132
shell = self.shell or detect_shell()[0]
@@ -136,8 +136,8 @@ def read(fd):
136136
stdout=slave_fd,
137137
stderr=slave_fd,
138138
text=True,
139-
env=env,
140-
preexec_fn=os.setsid,
139+
# env=env,
140+
# preexec_fn=os.setsid,
141141
)
142142
# Wait for the shell to start and get to the prompt
143143
print(read(master_fd))

0 commit comments

Comments
 (0)