From d02152fd9783a9bd34f72357a57ed4d6ab00d4c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Piliszek?= Date: Wed, 3 Aug 2022 12:08:56 +0200 Subject: [PATCH] Add WebTest as a test dependency Pecan has made WebTest an optional dependency for testing only [1]. Since it is used for blazar unit testing, we need to add it to the test-requirements. The lower version bound is required by requirements-check. It is (arbitrarily) taken from the Queens' upper-constraints. [1] https://github.com/pecan/pecan/pull/140 Change-Id: I67b730a21676a8191756effec7e15ab1895e1c95 --- test-requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/test-requirements.txt b/test-requirements.txt index f0696ad5..516249df 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -10,3 +10,4 @@ testscenarios>=0.4 # Apache-2.0/BSD testtools>=2.2.0 # MIT coverage!=4.4,>=4.0 # Apache-2.0 oslotest>=3.2.0 # Apache-2.0 +WebTest>=2.0.29 # MIT, for testing with pecan