summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBenjamin Schubert <contact@benschubert.me>2020-08-03 10:19:19 +0000
committerBenjamin Schubert <contact@benschubert.me>2020-08-05 20:50:02 +0100
commitf45f33b90c76556a216818a0f178fdcaa7606015 (patch)
treed0e1ff50b497a0a83b58b175287c3301dd711ce9 /src
parent104c715b5da2b32abfe317f81f93beb9890e4ff6 (diff)
downloadbuildstream-f45f33b90c76556a216818a0f178fdcaa7606015.tar.gz
requirements.txt: Update dependenciesbschubert/update-to-pytest-6
This now pulls in pytest > 6.0.1, which has a few breaking changes Fix #1377
Diffstat (limited to 'src')
-rw-r--r--src/buildstream/testing/runcli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/testing/runcli.py b/src/buildstream/testing/runcli.py
index 1e868609a..712e6811a 100644
--- a/src/buildstream/testing/runcli.py
+++ b/src/buildstream/testing/runcli.py
@@ -372,7 +372,7 @@ class Cli:
with open(os.devnull) as devnull:
sys.stdin = devnull
capture_kind = FDCaptureBinary if binary_capture else FDCapture
- capture = MultiCapture(out=True, err=True, in_=False, Capture=capture_kind)
+ capture = MultiCapture(out=capture_kind(1), err=capture_kind(2), in_=None)
capture.start_capturing()
try: