ci: remove pip and virtualenv

- separate unit tests, benchmark, system tests, flake8
This commit is contained in:
André Roth
2024-10-04 12:57:31 +02:00
parent f0ad0f9496
commit b2b7f11d17
3 changed files with 28 additions and 33 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ class DotFinder(object):
def find_dot(self, executables):
for executable in executables:
try:
subprocess.check_output([executable, "-V"], text=True)
subprocess.check_output([executable, "-V"], text=True, stderr=subprocess.DEVNULL)
return executable
except Exception:
pass