Test / Create distribution (push) Successful in 55s
Test / Sandbox (push) Successful in 3m23s
Test / Hakurei (push) Successful in 5m30s
Test / Sandbox (race detector) (push) Successful in 6m17s
Test / Hakurei (race detector) (push) Successful in 7m41s
Test / ShareFS (push) Successful in 8m30s
Test / Flake checks (push) Successful in 1m7s
This has been blocking OpenSSL for months. This currently sits on a release candidate. Signed-off-by: Ophestra <cat@gensokyo.uk>
22 lines
565 B
Diff
22 lines
565 B
Diff
diff --git a/tests/commands/util.py b/tests/commands/util.py
|
|
index 5d139d9..d18d103 100644
|
|
--- a/tests/commands/util.py
|
|
+++ b/tests/commands/util.py
|
|
@@ -2,7 +2,7 @@ from __future__ import annotations
|
|
|
|
import sys
|
|
from io import StringIO
|
|
-from os import PathLike
|
|
+from os import PathLike, environ
|
|
from subprocess import CalledProcessError
|
|
from unittest.mock import patch
|
|
|
|
@@ -10,6 +10,7 @@ import pytest
|
|
|
|
from wheel._commands import main
|
|
|
|
+environ["NO_COLOR"] = "1"
|
|
|
|
def run_command(
|
|
command: str, *args: str | PathLike, catch_systemexit: bool = True
|