Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,11 +221,18 @@ jobs:
mkdir python_release
cp -r python/* python_release/

grep "version =" python_release/pyproject.toml
mkdir -p python_release/.github/workflows

cp .github/workflows/publish.yml python_release/.github/workflows/

if [ -f "LICENSE" ]; then
cp LICENSE python_release/
fi

rm -rf python_release/tests
find python_release -type d -name "__pycache__" -exec rm -rf {} +
rm -rf python_release/.venv
rm -rf python_release/uv.lock

Copilot AI Dec 19, 2025

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removing uv.lock may cause issues with the publish.yml workflow which references "uv.lock" in the cache-dependency-glob configuration. While the publish workflow should still work, the absence of uv.lock will prevent proper cache invalidation based on dependency changes and may lead to using stale cached dependencies. Consider whether uv.lock should be included in the release or if the publish.yml cache configuration should be updated.

Suggested change
rm -rf python_release/uv.lock

Copilot uses AI. Check for mistakes.

ls -R python_release/teams_lib_pzsp2_z1/bin

Expand Down