From: Kefu Chai Date: Tue, 26 Apr 2022 01:12:07 +0000 (+0800) Subject: update-requirements.sh: pass --extra=test to pip-compile X-Git-Tag: 1.2.0~176^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f85306bbb2ccdfc0322fe1f3fca7c9506d84cfbe;p=teuthology.git update-requirements.sh: pass --extra=test to pip-compile otherwise the requirements used by test would be missed Signed-off-by: Kefu Chai --- diff --git a/update-requirements.sh b/update-requirements.sh index 8040c0d1e..a2b56ba8d 100755 --- a/update-requirements.sh +++ b/update-requirements.sh @@ -1,3 +1,3 @@ #!/bin/bash -pip-compile $@ pyproject.toml +pip-compile --extra=test $@ pyproject.toml