-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactive_scenarios.py
More file actions
137 lines (132 loc) · 2.33 KB
/
Copy pathactive_scenarios.py
File metadata and controls
137 lines (132 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
"""Curated/public scenarios that are live on the production website.
Auto-generated by `etl/ingestion/tools/refresh_active_scenarios.py`
on 2026-06-29T22:09:50Z from `https://api.coeqwal.org/api/scenarios` (rows where `is_active` is true).
Do not edit by hand. Re-run the refresh script to regenerate.
To change which scenarios are in this set, run
`etl/ingestion/tools/set_scenario_active.py --activate sXXX` (or
`--deactivate sXXX`), which flips `scenario.is_active` in the DB
and chains the refresh.
Use this set for anything that must match what the website serves:
tier uploads, API verification, tier verification. For the larger
set of scenarios that have ETL outputs in S3 (a superset that
includes drafts and inactive runs), import `ETL_SCENARIOS` from
`etl.common.etl_scenarios` instead.
"""
from __future__ import annotations
ACTIVE_SCENARIOS: frozenset[str] = frozenset({
"s0011",
"s0020",
"s0021",
"s0023",
"s0024",
"s0025",
"s0026",
"s0027",
"s0028",
"s0030",
"s0031",
"s0032",
"s0033",
"s0035",
"s0037",
"s0039",
"s0040",
"s0041",
"s0042",
"s0044",
"s0045",
"s0046",
"s0047",
"s0048",
"s0049",
"s0050",
"s0051",
"s0056",
"s0057",
"s0058",
"s0059",
"s0060",
"s0062",
"s0063",
"s0065",
"s0067",
"s0068",
"s0069",
"s0071",
"s0072",
"s0073",
"s0074",
"s0075",
"s0077",
"s0078",
"s0079",
"s0080",
"s0081",
"s0082",
"s0083",
"s0084",
"s0085",
"s0087",
"s0088",
"s0089",
"s0091",
"s0092",
"s0093",
"s0094",
"s0095",
"s0097",
"s0098",
"s0099",
"s0100",
"s0101",
"s0102",
"s0103",
"s0104",
"s0105",
"s0107",
"s0108",
"s0109",
"s0110",
"s0111",
"s0112",
"s0113",
"s0114",
"s0115",
"s0117",
"s0118",
"s0119",
"s0120",
"s0121",
"s0123",
"s0124",
"s0125",
"s0126",
"s0127",
"s0128",
"s0129",
"s0130",
"s0131",
"s0133",
"s0134",
"s0135",
"s0136",
"s0137",
"s0138",
"s0139",
"s0140",
"s0141",
"s0143",
"s0144",
"s0145",
"s0146",
"s0147",
"s0149",
"s0150",
"s0151",
"s0152",
"s0153",
"s0154",
"s0155",
"s0156",
"s0157",
})