File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,19 @@ jobs:
5454 - name : Run tests
5555 run : uv run pytest .
5656
57+ - name : Run tests with uvloop
58+ env :
59+ USE_UVLOOP : " 1"
60+ run : uv run pytest .
61+
5762 - name : Run coverage tests
5863 if : matrix.os == 'ubuntu-latest' && matrix.python-version == '3.14' && matrix.tarantool == '3'
5964 env :
6065 ASYNCTNT_DEBUG : " 1"
6166 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}"
6267 run : |
6368 make clean
69+ uv pip install -e '.[test]'
6470 uv run pytest --cov
6571 ./scripts/run_until_success.sh uv run coverage report -m
6672 ./scripts/run_until_success.sh uv run coverage html
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ docs: build
5050 $(MAKE ) -C docs html
5151
5252clean :
53- pip uninstall -y asynctnt
53+ uv pip uninstall -y asynctnt
5454 rm -rf asynctnt/* .c asynctnt/* .h asynctnt/* .cpp
5555 rm -rf asynctnt/* .so asynctnt/* .html
5656 rm -rf asynctnt/iproto/* .c asynctnt/iproto/* .h
Original file line number Diff line number Diff line change @@ -36,8 +36,6 @@ github = "https://github.com/igorcoding/asynctnt"
3636
3737[project .optional-dependencies ]
3838test = [
39- ' isort' ,
40- ' black' ,
4139 ' ruff' ,
4240 ' uvloop>=0.12.3; platform_system != "Windows" and platform.python_implementation != "PyPy"' ,
4341 ' pytest' ,
You can’t perform that action at this time.
0 commit comments