Skip to content

Commit b7c1442

Browse files
committed
Update steps to work around missing 'project' table in rel_2_0
1 parent e131290 commit b7c1442

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

.github/workflows/third_party.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -328,19 +328,17 @@ jobs:
328328
uses: actions/checkout@v4
329329
with:
330330
path: typing-extensions-latest
331-
- name: Install test dependencies
332-
run: |
333-
cd sqlalchemy
334-
uv add --editable ../typing-extensions-latest
335-
uv add tox setuptools
336-
uv sync
331+
- name: Install sqlalchemy test dependencies
332+
run: uv pip install --system tox setuptools
333+
- name: Install typing_extensions latest
334+
run: uv pip install --system -e 'typing-extensions @ ./typing-extensions-latest'
337335
- name: List installed dependencies
338336
# Note: additional dependencies are installed when running tox below
339-
run: cd sqlalchemy; uv pip list
337+
run: uv pip list
340338
- name: Run sqlalchemy tests
341339
run: |
342340
cd sqlalchemy
343-
uv run tox -e github-nocext -- -q --nomemory --notimingintensive
341+
tox -e github-nocext -- -q --nomemory --notimingintensive
344342
env:
345343
TOX_WORKERS: -n4
346344

0 commit comments

Comments
 (0)