Skip to content

Commit 40e0a34

Browse files
committed
ci fix
1 parent fc95163 commit 40e0a34

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/actions.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ docs: build
5050
$(MAKE) -C docs html
5151

5252
clean:
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

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ github = "https://github.com/igorcoding/asynctnt"
3636

3737
[project.optional-dependencies]
3838
test = [
39-
'isort',
40-
'black',
4139
'ruff',
4240
'uvloop>=0.12.3; platform_system != "Windows" and platform.python_implementation != "PyPy"',
4341
'pytest',

0 commit comments

Comments
 (0)