File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 10
10
tests :
11
11
name : Python ${{ matrix.python-version }}
12
12
runs-on : ubuntu-latest
13
- timeout-minutes : 10
13
+ timeout-minutes : 20
14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
@@ -50,11 +50,10 @@ jobs:
50
50
with :
51
51
python-version : ${{ matrix.python-version }}
52
52
- name : Install uv
53
- uses : astral-sh/setup-uv@v3
53
+ uses : astral-sh/setup-uv@v5
54
54
55
55
- name : Install dependencies
56
56
run : |
57
- uv lock
58
57
uv sync --all-extras --dev
59
58
uv tool install tox --with tox-uv
60
59
67
66
runs-on : ubuntu-latest
68
67
steps :
69
68
- uses : actions/checkout@v4
70
- - uses : chartboost /ruff-action@v1
69
+ - uses : astral-sh /ruff-action@v3
Original file line number Diff line number Diff line change 8
8
from channels_valkey .pubsub import ValkeyPubSubChannelLayer
9
9
from channels_valkey .utils import _close_valkey
10
10
11
- SENTINEL_MASTER = "mymaster "
11
+ SENTINEL_MASTER = "myprimary "
12
12
SENTINEL_KWARGS = {"password" : "channels_valkey" }
13
13
TEST_HOSTS = [
14
14
{
Original file line number Diff line number Diff line change 7
7
from asgiref .sync import async_to_sync
8
8
from channels_valkey .core import ChannelFull , ValkeyChannelLayer
9
9
10
- SENTINEL_MASTER = "mymaster "
10
+ SENTINEL_MASTER = "myprimary "
11
11
SENTINEL_KWARGS = {"password" : "channels_valkey" }
12
12
13
13
TEST_HOSTS = [
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ envlist =
6
6
7
7
[testenv]
8
8
extras =
9
- dev
10
9
cryptography
11
10
runner = uv-venv-lock-runner
12
11
commands =
You can’t perform that action at this time.
0 commit comments