Skip to content

Commit 548c551

Browse files
committed
update tests
1 parent 3387c1d commit 548c551

File tree

4 files changed

+7
-14
lines changed

4 files changed

+7
-14
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212
strategy:
1313
matrix:
14-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
14+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
1515

1616
steps:
1717
- name: Checkout repo

.travis.yml

-13
This file was deleted.

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@
4444
"Programming Language :: Python :: 3.7",
4545
"Programming Language :: Python :: 3.8",
4646
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
48+
"Programming Language :: Python :: 3.11",
49+
"Programming Language :: Python :: 3.12",
4750
]
4851
)
4952

tests/test_api.py

+3
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"3.9": {"id": 1893, "name": "Star Wars: Episode I - The Phantom Menace"},
3434
"3.10": {"id": 1894, "name": "Star Wars: Episode II - Attack of the Clones"},
3535
"3.11": {"id": 1895, "name": "Star Wars: Episode III - Revenge of the Sith"},
36+
"3.12": {"id": 140607, "name": "Star Wars: The Force Awakens"},
3637
}
3738

3839
show_ids = {
@@ -42,6 +43,7 @@
4243
"3.9": {"id": 203085, "name": "Star Wars: Tales of the Jedi"},
4344
"3.10": {"id": 114478, "name": "Star Wars: Visions"},
4445
"3.11": {"id": 79093, "name": "Star Wars Resistance"},
46+
"3.12": {"id": 83867, "name": "Star Wars: Andor"},
4547
}
4648

4749
episode_ids = {
@@ -51,6 +53,7 @@
5153
"3.9": {"id": 4, "name": "Destroy Malevolence"},
5254
"3.10": {"id": 5, "name": "Rookies"},
5355
"3.11": {"id": 6, "name": "Downfall of a Droid"},
56+
"3.12": {"id": 7, "name": "Duel of the Droids"},
5457
}
5558

5659
class APITests(unittest.TestCase):

0 commit comments

Comments
 (0)