From 5f1137b3475a19be775777fb24f0933d69fc2a01 Mon Sep 17 00:00:00 2001 From: sommersoft Date: Sat, 23 Apr 2022 21:13:00 -0500 Subject: [PATCH] fix build_run test after change in a901188 --- testing/downstream_testing/test_downstream_runner.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/testing/downstream_testing/test_downstream_runner.py b/testing/downstream_testing/test_downstream_runner.py index 1b22ba226..a444d3945 100644 --- a/testing/downstream_testing/test_downstream_runner.py +++ b/testing/downstream_testing/test_downstream_runner.py @@ -252,7 +252,6 @@ class TestDownstreamRunnerBuild: run = runner.build_run() assert run == { "py310-dj40-postgres-xdist-coverage": [ - "pip install tox", "tox -e py310-dj40-postgres-xdist", ] } @@ -274,8 +273,8 @@ class TestDownstreamRunnerBuild: run = runner.build_run() assert run == { - "py310": ["pip install tox", "tox -e py310"], - "py38": ["pip install tox", "tox -e py38"], - "py39": ["pip install tox", "tox -e py39"], - "pypy3": ["pip install tox", "tox -e pypy3"], + "py310": ["tox -e py310"], + "py38": ["tox -e py38"], + "py39": ["tox -e py39"], + "pypy3": ["tox -e pypy3"], }