Skip to content

Commit f3cff8c

Browse files
committed
Release convoke support
1 parent 70b09c4 commit f3cff8c

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Added
11+
12+
- Support for convoke.games!
13+
1014
## [v17.0.7](https://github.com/lexicalunit/spellbot/releases/tag/v17.0.7) - 2025-11-07
1115

1216
### Changed

src/spellbot/enums.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,13 @@ def __str__(self) -> str:
5151
"_A Table Stream link will be created when all players have joined._",
5252
"https://table-stream.com/",
5353
)
54-
# To be released soon!
55-
# CONVOKE = "Convoke", "_Please use Convoke for this game._", "https://www.convoke.games/"
54+
CONVOKE = "Convoke", "_Please use Convoke for this game._", "https://www.convoke.games/"
5655

5756

5857
GAME_SERVICE_ORDER = [
5958
GameService.NOT_ANY,
6059
GameService.SPELLTABLE,
61-
# GameService.CONVOKE, # To be released soon!
60+
GameService.CONVOKE,
6261
GameService.TABLE_STREAM,
6362
GameService.COCKATRICE,
6463
GameService.X_MAGE,

tests/test_bot.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,12 @@ class TestSpellBot(BaseMixin):
5454
"tablestream.generate_link",
5555
id="tablestream",
5656
),
57-
# To be released soon!
58-
# pytest.param(
59-
# False,
60-
# {"service": GameService.CONVOKE.value},
61-
# "convoke.generate_link",
62-
# id="convoke",
63-
# ),
57+
pytest.param(
58+
False,
59+
{"service": GameService.CONVOKE.value},
60+
"convoke.generate_link",
61+
id="convoke",
62+
),
6463
pytest.param(
6564
False,
6665
{"service": GameService.NOT_ANY.value},

0 commit comments

Comments
 (0)