Skip to content

Commit 28676ff

Browse files
committed
check
1 parent ee9563c commit 28676ff

2 files changed

Lines changed: 2 additions & 10 deletions

File tree

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,7 @@ jobs:
189189
uses: ruby/setup-ruby@v1
190190
with:
191191
ruby-version: '3.4.7'
192-
193-
- name: Restore Git Bash on Windows
194-
if: runner.os == 'Windows'
195-
shell: pwsh
196-
run: |
197-
# Ruby's setup-ruby action prepends MSYS2 bash to PATH, which mangles
198-
# env vars and breaks MSI installs. Re-prepend Git Bash so shell: bash
199-
# picks it up instead.
200-
echo "C:\Program Files\Git\bin" | Out-File -Append -Encoding utf8 $env:GITHUB_PATH
192+
windows-toolchain: none
201193

202194
- name: Install Rust toolchain and cargo-lambda
203195
if: contains(fromJSON('["build-x86-1", "build-x86-2", "build-arm64", "cloud-based-tests", "tier1-finch", "tier1-windows-build-2", "tier1-windows-build-3", "tier1-windows-other"]'), matrix.test_suite)

tests/setup-pytest.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -eo pipefail
66
echo "=== UV_PYTHON resolved to: $(uv python find ${UV_PYTHON:-3.11}) ==="
77

88
if [ "${RUNNER_OS:-}" == "Windows" ] || [[ "$(uname -s)" == MINGW* ]] || [[ "$(uname -s)" == MSYS* ]]; then
9-
python3 -m venv "$HOME/pytest"
9+
python3.11 -m venv "$HOME/pytest"
1010
VENV_PY="$HOME/pytest/Scripts/python.exe"
1111
SAM_CLI_DEV=1 uv pip install --python "$VENV_PY" -e '.[dev]'
1212
"$HOME/pytest/Scripts/pytest" --version

0 commit comments

Comments
 (0)