From 5172d7e5ebbcc85efd43c73c8615e96cf9a9dd72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Tue, 12 Mar 2024 08:58:27 +0100 Subject: [PATCH] Install unittest2 only on python 2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- test-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-requirements.txt b/test-requirements.txt index 2d921c76..db667730 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,4 +2,4 @@ mock; python_version < '3.3' parameterized pytest pytest-cov -unittest2 +unittest2; python_version < '3.0'