|
26 | 26 | local = os.environ["LOCAL"] == "True"
|
27 | 27 | py_version = f"{sys.version_info.major}.{sys.version_info.minor}"
|
28 | 28 |
|
29 |
| -if py_version in ["3.10", "3.11", "3.12"] and not local: |
30 |
| - time.sleep(300) |
31 |
| - |
32 | 29 | movie_ids = {
|
33 |
| - "3.6": {"id": 11, "name": "Star Wars"}, |
34 |
| - "3.7": {"id": 1891, "name": "The Empire Strikes Back"}, |
35 | 30 | "3.8": {"id": 1892, "name": "Return of the Jedi"},
|
36 | 31 | "3.9": {"id": 1893, "name": "Star Wars: Episode I - The Phantom Menace"},
|
37 | 32 | "3.10": {"id": 1894, "name": "Star Wars: Episode II - Attack of the Clones"},
|
|
40 | 35 | }
|
41 | 36 |
|
42 | 37 | show_ids = {
|
43 |
| - "3.6": {"id": 4194, "name": "Star Wars: The Clone Wars"}, |
44 |
| - "3.7": {"id": 105971, "name": "Star Wars: The Bad Batch"}, |
45 |
| - "3.8": {"id": 60554, "name": "Star Wars Rebels"}, |
46 |
| - "3.9": {"id": 203085, "name": "Star Wars: Tales of the Jedi"}, |
47 |
| - "3.10": {"id": 114478, "name": "Star Wars: Visions"}, |
48 |
| - "3.11": {"id": 79093, "name": "Star Wars Resistance"}, |
| 38 | + "3.8": {"id": 4194, "name": "Star Wars: The Clone Wars"}, |
| 39 | + "3.9": {"id": 105971, "name": "Star Wars: The Bad Batch"}, |
| 40 | + "3.10": {"id": 60554, "name": "Star Wars Rebels"}, |
| 41 | + "3.11": {"id": 203085, "name": "Star Wars: Tales of the Jedi"}, |
49 | 42 | "3.12": {"id": 83867, "name": "Star Wars: Andor"},
|
50 | 43 | }
|
51 | 44 |
|
52 | 45 | episode_ids = {
|
53 |
| - "3.6": {"id": 1, "name": "Ambush"}, |
54 |
| - "3.7": {"id": 2, "name": "Rising Malevolence"}, |
55 |
| - "3.8": {"id": 3, "name": "Shadow of Malevolence"}, |
56 |
| - "3.9": {"id": 4, "name": "Destroy Malevolence"}, |
57 |
| - "3.10": {"id": 5, "name": "Rookies"}, |
58 |
| - "3.11": {"id": 6, "name": "Downfall of a Droid"}, |
59 |
| - "3.12": {"id": 7, "name": "Duel of the Droids"}, |
| 46 | + "3.8": {"id": 1, "name": "Ambush"}, |
| 47 | + "3.9": {"id": 2, "name": "Rising Malevolence"}, |
| 48 | + "3.10": {"id": 3, "name": "Shadow of Malevolence"}, |
| 49 | + "3.11": {"id": 4, "name": "Destroy Malevolence"}, |
| 50 | + "3.12": {"id": 5, "name": "Rookies"}, |
60 | 51 | }
|
61 | 52 |
|
62 | 53 | class APITests(unittest.TestCase):
|
|
0 commit comments