From b17f002ef7ad549d967a706c8fd9699678374c92 Mon Sep 17 00:00:00 2001 From: Ryan Scott Date: Thu, 2 Nov 2023 14:58:15 -0400 Subject: [PATCH] CI: Don't run `poetry update` This causes `poetry` to regenerate the `poetry.lock` file with newer versions of dependencies, which defeats the point of checking in the lock file in the first place. --- saw-remote-api/scripts/run_rpc_tests.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/saw-remote-api/scripts/run_rpc_tests.sh b/saw-remote-api/scripts/run_rpc_tests.sh index 7810c71788..d42ca22429 100755 --- a/saw-remote-api/scripts/run_rpc_tests.sh +++ b/saw-remote-api/scripts/run_rpc_tests.sh @@ -13,7 +13,6 @@ function run_test { } echo "Setting up python environment for remote server clients..." -poetry update poetry install echo "Typechecking code with mypy..."