From f85306bbb2ccdfc0322fe1f3fca7c9506d84cfbe Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Tue, 26 Apr 2022 09:12:07 +0800 Subject: [PATCH] update-requirements.sh: pass --extra=test to pip-compile otherwise the requirements used by test would be missed Signed-off-by: Kefu Chai --- update-requirements.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-requirements.sh b/update-requirements.sh index 8040c0d1e3..a2b56ba8dc 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 -- 2.39.5