Skip to content

Commit 4abdf75

Browse files
committed
(fix) Changed the run-test.yml configuration to use windows version to see if that fixes the workflows hanging
1 parent 436f8f6 commit 4abdf75

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/run-tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,16 @@ jobs:
2222
with:
2323
python-version: ${{ matrix.python }}
2424

25+
- name: Set ARCHFLAGS for macOS
26+
if: runner.os == 'macOS'
27+
run: echo "ARCHFLAGS=-arch arm64" >> $GITHUB_ENV
28+
2529
- name: Install poetry
2630
run: python -m pip install poetry
2731

2832
- name: Set poetry installer config
2933
if: runner.os == 'macOS'
30-
run: echo "POETRY_INSTALLER_NO_BINARY=:all:" >> $GITHUB_ENV
34+
run: echo "POETRY_INSTALLER_NO_BINARY=:none:" >> $GITHUB_ENV
3135

3236
- name: Cache the virtualenv
3337
id: cache-venv

0 commit comments

Comments
 (0)