From 3255f93a5c1f94af75d05a2d07bf8851d74df369 Mon Sep 17 00:00:00 2001 From: Itamar Turner-Trauring Date: Tue, 15 Feb 2022 10:47:22 -0500 Subject: [PATCH] Try newer version of Chutney. --- integration/conftest.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/integration/conftest.py b/integration/conftest.py index ef5c518a8..e284b5cba 100644 --- a/integration/conftest.py +++ b/integration/conftest.py @@ -462,10 +462,8 @@ def chutney(reactor, temp_dir): ) pytest_twisted.blockon(proto.done) - # XXX: Here we reset Chutney to the last revision known to work - # with Python 2, as a workaround for Chutney moving to Python 3. - # When this is no longer necessary, we will have to drop this and - # add '--depth=1' back to the above 'git clone' subprocess. + # XXX: Here we reset Chutney to a specific revision known to work, + # since there are no stability guarantees or releases yet. proto = _DumpOutputProtocol(None) reactor.spawnProcess( proto, @@ -473,7 +471,7 @@ def chutney(reactor, temp_dir): ( 'git', '-C', chutney_dir, 'reset', '--hard', - '99bd06c7554b9113af8c0877b6eca4ceb95dcbaa' + 'c825cba0bcd813c644c6ac069deeb7347d3200ee' ), env=environ, )