Skip to content

Commit ae6f37a

Browse files
committed
this way?
1 parent 29bde2d commit ae6f37a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ jobs:
6969
# Be wary of running `pip install` here, since it becomes easy for us to
7070
# accidentally pick up typing_extensions as installed by a dependency
7171
cd src
72-
$UV_PYTHON -m unittest test_typing_extensions.py
72+
python --version
73+
python -m unittest test_typing_extensions.py
7374
7475
- name: Test CPython typing test suite
7576
# Test suite fails on PyPy even without typing_extensions
@@ -78,7 +79,7 @@ jobs:
7879
cd src
7980
# Run the typing test suite from CPython with typing_extensions installed,
8081
# because we monkeypatch typing under some circumstances.
81-
$UV_PYTHON -c 'import typing_extensions; import test.__main__' test_typing -v
82+
python -c 'import typing_extensions; import test.__main__' test_typing -v
8283
8384
linting:
8485
name: Lint

0 commit comments

Comments
 (0)