mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-20 04:29:47 +00:00
[ty] Set INSTA_FORCE_PASS and INSTA_OUTPUT environment variables from mdtest.py (#21029)
This commit is contained in:
parent
58a68f1bbd
commit
20510e1d71
1 changed files with 6 additions and 1 deletions
|
|
@ -106,7 +106,12 @@ class MDTestRunner:
|
|||
return subprocess.run(
|
||||
[self.mdtest_executable, *arguments],
|
||||
cwd=CRATE_ROOT,
|
||||
env=dict(os.environ, CLICOLOR_FORCE="1"),
|
||||
env=dict(
|
||||
os.environ,
|
||||
CLICOLOR_FORCE="1",
|
||||
INSTA_FORCE_PASS="1",
|
||||
INSTA_OUTPUT="none",
|
||||
),
|
||||
capture_output=capture_output,
|
||||
text=True,
|
||||
check=False,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue