We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc1b2c commit 4370018Copy full SHA for 4370018
testkit/backend.py
@@ -1,7 +1,8 @@
1
import subprocess
2
+import sys
3
4
if __name__ == "__main__":
- err = open("/artifacts/backenderr.log", "w")
5
- out = open("/artifacts/backendout.log", "w")
6
subprocess.check_call(
7
- ["python", "-m", "testkitbackend"], stdout=out, stderr=err)
+ ["python", "-m", "testkitbackend"],
+ stdout=sys.stdout, stderr=sys.stderr
8
+ )
0 commit comments