From af2776f2c2275f312c9948e49f84ceadf0dcef2a Mon Sep 17 00:00:00 2001 From: Yeison Vargas Date: Thu, 15 Sep 2022 11:46:42 -0500 Subject: [PATCH] Debug log level on binaries testing --- binaries.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binaries.py b/binaries.py index 9f5550a7..df320950 100644 --- a/binaries.py +++ b/binaries.py @@ -118,7 +118,7 @@ def test(self): Runs tests for every available arch on the current platform. """ for arch, python in self.python: - self.run(f"{python} -m pytest") + self.run(f"{python} -m pytest --log-level=DEBUG") if __name__ == "__main__":