Skip to content

Commit

Permalink
CI: Don't run poetry update
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
RyanGlScott committed Nov 2, 2023
1 parent 4ece8d8 commit 67a25a8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,6 @@ jobs:
- name: Install on MacOS
test: |
cd saw-remote-api/python/
poetry update
poetry install
poetry run mypy --install-types --non-interactive saw_client/ || true
poetry run mypy --install-types --non-interactive saw_client/
Expand Down
1 change: 0 additions & 1 deletion saw-remote-api/scripts/run_rpc_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand Down
1 change: 0 additions & 1 deletion saw-remote-api/scripts/test_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ sleep 5 # let the server catch its breath and be ready for requests


echo "Setting up python environment for remote server clients...";
poetry update;
poetry install;

export SAW_SERVER_URL="http://localhost:8080/";
Expand Down

0 comments on commit 67a25a8

Please sign in to comment.