We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e45785 commit 45acde2Copy full SHA for 45acde2
.github/workflows/test.yml
@@ -1,6 +1,6 @@
1
name: async-kernel test
2
3
-on: [ push, pull_request ]
+on: [ push ]
4
jobs:
5
test:
6
runs-on: ${{ matrix.os }}
@@ -28,8 +28,4 @@ jobs:
28
29
- name: Run the tests
30
timeout-minutes: 5
31
- run: uv run pytest
32
-
33
- - name: Run Ruff
34
- run: ruff check --output-format=github .
35
+ run: uv run pytest -v
tests/conftest.py
@@ -41,6 +41,7 @@ def anyio_backend(request):
41
42
@pytest.fixture(scope="module")
43
def transport():
44
+ return 'tcp'
45
return "ipc" if zmq.has("ipc") else "tcp"
46
47
0 commit comments