Skip to content

Commit 6a68dcd

Browse files
committed
tests: Move arq under toxgen
1 parent b1a8b63 commit 6a68dcd

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

scripts/populate_tox/config.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
},
3030
"python": ">=3.8",
3131
},
32+
"arq": {
33+
"package": "arq",
34+
"deps": {
35+
"*": ["async-timeout", "pytest-asyncio", "fakeredis>=2.2.0,<2.8"],
36+
"<=0.23": ["pydantic<2"],
37+
},
38+
},
3239
"bottle": {
3340
"package": "bottle",
3441
"deps": {

scripts/populate_tox/populate_tox.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
"potel",
6868
# Integrations that can be migrated -- we should eventually remove all
6969
# of these from the IGNORE list
70-
"arq",
7170
"asyncpg",
7271
"beam",
7372
"boto3",

tox.ini

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# The file (and all resulting CI YAMLs) then need to be regenerated via
1111
# "scripts/generate-test-files.sh".
1212
#
13-
# Last generated: 2025-09-02T10:59:55.249513+00:00
13+
# Last generated: 2025-09-02T13:17:31.600009+00:00
1414

1515
[tox]
1616
requires =
@@ -227,6 +227,11 @@ envlist =
227227

228228

229229
# ~~~ Tasks ~~~
230+
{py3.7,py3.9,py3.10}-arq-v0.23
231+
{py3.7,py3.10,py3.11}-arq-v0.24.0
232+
{py3.7,py3.10,py3.11}-arq-v0.25.0
233+
{py3.8,py3.11,py3.12}-arq-v0.26.3
234+
230235
{py3.6,py3.7,py3.8}-celery-v4.4.7
231236
{py3.6,py3.7,py3.8}-celery-v5.0.5
232237
{py3.8,py3.12,py3.13}-celery-v5.5.3
@@ -632,6 +637,15 @@ deps =
632637

633638

634639
# ~~~ Tasks ~~~
640+
arq-v0.23: arq==0.23
641+
arq-v0.24.0: arq==0.24.0
642+
arq-v0.25.0: arq==0.25.0
643+
arq-v0.26.3: arq==0.26.3
644+
arq: async-timeout
645+
arq: pytest-asyncio
646+
arq: fakeredis>=2.2.0,<2.8
647+
arq-v0.23: pydantic<2
648+
635649
celery-v4.4.7: celery==4.4.7
636650
celery-v5.0.5: celery==5.0.5
637651
celery-v5.5.3: celery==5.5.3

0 commit comments

Comments
 (0)