cornflow 1.1.5__py3-none-any.whl → 1.2.0a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,7 +43,7 @@ class TestPermissionsViewRoleEndpoint(CustomTestCase):
43
43
  follow_redirects=True,
44
44
  headers={
45
45
  "Content-Type": "application/json",
46
- "Authorization": "Bearer " + self.token,
46
+ "Authorization": f"Bearer {self.token}",
47
47
  },
48
48
  )
49
49
 
@@ -58,7 +58,7 @@ class TestPermissionsViewRoleEndpoint(CustomTestCase):
58
58
  follow_redirects=True,
59
59
  headers={
60
60
  "Content-Type": "application/json",
61
- "Authorization": "Bearer " + self.token,
61
+ "Authorization": f"Bearer {self.token}",
62
62
  },
63
63
  )
64
64
 
@@ -103,7 +103,7 @@ class TestPermissionViewRolesDetailEndpoint(CustomTestCase):
103
103
  data=json.dumps(self.payload),
104
104
  headers={
105
105
  "Content-Type": "application/json",
106
- "Authorization": "Bearer " + self.token,
106
+ "Authorization": f"Bearer {self.token}",
107
107
  },
108
108
  ).json["id"]
109
109
  view_id = 2
@@ -127,7 +127,7 @@ class TestPermissionViewRolesDetailEndpoint(CustomTestCase):
127
127
  data=json.dumps(self.payload),
128
128
  headers={
129
129
  "Content-Type": "application/json",
130
- "Authorization": "Bearer " + self.token,
130
+ "Authorization": f"Bearer {self.token}",
131
131
  },
132
132
  ).json["id"]
133
133
  for role in ROLES_MAP:
@@ -151,7 +151,7 @@ class TestPermissionViewRolesDetailEndpoint(CustomTestCase):
151
151
  data=json.dumps(self.payload),
152
152
  headers={
153
153
  "Content-Type": "application/json",
154
- "Authorization": "Bearer " + self.token,
154
+ "Authorization": f"Bearer {self.token}",
155
155
  },
156
156
  ).json["id"]
157
157
 
@@ -160,7 +160,7 @@ class TestPermissionViewRolesDetailEndpoint(CustomTestCase):
160
160
  follow_redirects=True,
161
161
  headers={
162
162
  "Content-Type": "application/json",
163
- "Authorization": "Bearer " + self.token,
163
+ "Authorization": f"Bearer {self.token}",
164
164
  },
165
165
  )
166
166
  self.assertEqual(200, response.status_code)
@@ -174,7 +174,7 @@ class TestPermissionViewRolesDetailEndpoint(CustomTestCase):
174
174
  data=json.dumps(self.payload),
175
175
  headers={
176
176
  "Content-Type": "application/json",
177
- "Authorization": "Bearer " + self.token,
177
+ "Authorization": f"Bearer {self.token}",
178
178
  },
179
179
  ).json["id"]
180
180
 
@@ -186,7 +186,7 @@ class TestPermissionViewRolesDetailEndpoint(CustomTestCase):
186
186
  follow_redirects=True,
187
187
  headers={
188
188
  "Content-Type": "application/json",
189
- "Authorization": "Bearer " + self.token,
189
+ "Authorization": f"Bearer {self.token}",
190
190
  },
191
191
  )
192
192
  self.assertEqual(403, response.status_code)
@@ -47,7 +47,7 @@ class TestRolesListEndpoint(CustomTestCase):
47
47
  follow_redirects=True,
48
48
  headers={
49
49
  "Content-Type": "application/json",
50
- "Authorization": "Bearer " + self.token,
50
+ "Authorization": f"Bearer {self.token}",
51
51
  },
52
52
  )
53
53
  self.assertEqual(200, response.status_code)
@@ -63,7 +63,7 @@ class TestRolesListEndpoint(CustomTestCase):
63
63
  follow_redirects=True,
64
64
  headers={
65
65
  "Content-Type": "application/json",
66
- "Authorization": "Bearer " + self.token,
66
+ "Authorization": f"Bearer {self.token}",
67
67
  },
68
68
  )
69
69
 
@@ -75,7 +75,7 @@ class TestRolesListEndpoint(CustomTestCase):
75
75
  follow_redirects=True,
76
76
  headers={
77
77
  "Content-Type": "application/json",
78
- "Authorization": "Bearer " + self.token,
78
+ "Authorization": f"Bearer {self.token}",
79
79
  },
80
80
  )
81
81
 
@@ -91,7 +91,7 @@ class TestRolesListEndpoint(CustomTestCase):
91
91
  follow_redirects=True,
92
92
  headers={
93
93
  "Content-Type": "application/json",
94
- "Authorization": "Bearer " + self.token,
94
+ "Authorization": f"Bearer {self.token}",
95
95
  },
96
96
  )
97
97
  self.assertEqual(403, response.status_code)
@@ -157,7 +157,7 @@ class TestRolesDetailEndpoint(CustomTestCase):
157
157
  follow_redirects=True,
158
158
  headers={
159
159
  "Content-Type": "application/json",
160
- "Authorization": "Bearer " + self.token,
160
+ "Authorization": f"Bearer {self.token}",
161
161
  },
162
162
  )
163
163
 
@@ -191,7 +191,7 @@ class TestRolesDetailEndpoint(CustomTestCase):
191
191
  follow_redirects=True,
192
192
  headers={
193
193
  "Content-Type": "application/json",
194
- "Authorization": "Bearer " + self.token,
194
+ "Authorization": f"Bearer {self.token}",
195
195
  },
196
196
  )
197
197
 
@@ -203,7 +203,7 @@ class TestRolesDetailEndpoint(CustomTestCase):
203
203
  follow_redirects=True,
204
204
  headers={
205
205
  "Content-Type": "application/json",
206
- "Authorization": "Bearer " + self.token,
206
+ "Authorization": f"Bearer {self.token}",
207
207
  },
208
208
  )
209
209
 
@@ -246,7 +246,7 @@ class TestUserRolesListEndpoint(CustomTestCase):
246
246
  follow_redirects=True,
247
247
  headers={
248
248
  "Content-Type": "application/json",
249
- "Authorization": "Bearer " + self.token,
249
+ "Authorization": f"Bearer {self.token}",
250
250
  },
251
251
  )
252
252
  self.assertEqual(200, response.status_code)
@@ -261,7 +261,7 @@ class TestUserRolesListEndpoint(CustomTestCase):
261
261
  follow_redirects=True,
262
262
  headers={
263
263
  "Content-Type": "application/json",
264
- "Authorization": "Bearer " + self.token,
264
+ "Authorization": f"Bearer {self.token}",
265
265
  },
266
266
  )
267
267
  self.assertEqual(403, response.status_code)
@@ -431,7 +431,7 @@ class TestRolesModelMethods(CustomTestCase):
431
431
  self.payload = {"name": "test_role"}
432
432
 
433
433
  def test_user_role_delete_cascade(self):
434
- payload = {"user_id": self.user}
434
+ payload = {"user_id": self.user.id}
435
435
  self.token = self.create_user_with_role(ADMIN_ROLE)
436
436
  self.cascade_delete(
437
437
  self.url,
@@ -81,7 +81,7 @@ class TestTablesListEndpoint(TestCase):
81
81
  follow_redirects=True,
82
82
  headers={
83
83
  "Content-Type": "application/json",
84
- "Authorization": "Bearer " + self.token,
84
+ "Authorization": f"Bearer {self.token}",
85
85
  },
86
86
  )
87
87
  self.assertEqual(response.status_code, 200)
@@ -111,7 +111,7 @@ class TestTablesListEndpoint(TestCase):
111
111
  follow_redirects=True,
112
112
  headers={
113
113
  "Content-Type": "application/json",
114
- "Authorization": "Bearer " + self.token,
114
+ "Authorization": f"Bearer {self.token}",
115
115
  },
116
116
  query_string=dict(limit=3),
117
117
  )
@@ -187,7 +187,7 @@ class TestTablesDetailEndpoint(TestCase):
187
187
  follow_redirects=True,
188
188
  headers={
189
189
  "Content-Type": "application/json",
190
- "Authorization": "Bearer " + self.token,
190
+ "Authorization": f"Bearer {self.token}",
191
191
  },
192
192
  )
193
193
 
@@ -204,7 +204,7 @@ class TestTablesDetailEndpoint(TestCase):
204
204
  follow_redirects=True,
205
205
  headers={
206
206
  "Content-Type": "application/json",
207
- "Authorization": "Bearer " + self.token,
207
+ "Authorization": f"Bearer {self.token}",
208
208
  },
209
209
  )
210
210
  self.assertEqual(response.status_code, 400)
@@ -216,7 +216,7 @@ class TestTablesDetailEndpoint(TestCase):
216
216
  follow_redirects=True,
217
217
  headers={
218
218
  "Content-Type": "application/json",
219
- "Authorization": "Bearer " + self.token,
219
+ "Authorization": f"Bearer {self.token}",
220
220
  },
221
221
  )
222
222
  self.assertEqual(response.status_code, 404)
@@ -270,7 +270,7 @@ class TestTablesEndpointAdmin(TestCase):
270
270
  follow_redirects=True,
271
271
  headers={
272
272
  "Content-Type": "application/json",
273
- "Authorization": "Bearer " + self.token,
273
+ "Authorization": f"Bearer {self.token}",
274
274
  },
275
275
  )
276
276
  self.assertEqual(response.status_code, 403)
@@ -284,7 +284,7 @@ class TestTablesEndpointAdmin(TestCase):
284
284
  follow_redirects=True,
285
285
  headers={
286
286
  "Content-Type": "application/json",
287
- "Authorization": "Bearer " + self.token,
287
+ "Authorization": f"Bearer {self.token}",
288
288
  },
289
289
  )
290
290
 
@@ -87,15 +87,21 @@ class TestUnexpiringToken(CustomTestCase):
87
87
  def test_token_unexpiring(self):
88
88
  auth = BIAuth()
89
89
 
90
+ # Generate token dynamically
90
91
  token = auth.generate_token(1)
91
92
 
93
+ # Verify that the token decodes correctly
92
94
  response = auth.decode_token(token)
93
- self.assertEqual(response, {"user_id": 1})
94
-
95
- token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpYXQiOjE3MDM1OTI1OTIsInN1YiI6MX0.Plvmi02FMfZOTn6bxArELEmDeyuP-2X794c5VtAFgCg"
96
-
97
- response = auth.decode_token(token)
98
- self.assertEqual(response, {"user_id": 1})
95
+ self.assertEqual(response, {"username": "testname"})
96
+
97
+ # Don't use hardcoded token, generate another dynamic one
98
+ user = UserModel.get_one_user(1)
99
+ self.assertIsNotNone(user)
100
+
101
+ # Verify that another generated token also works
102
+ token2 = auth.generate_token(1)
103
+ response2 = auth.decode_token(token2)
104
+ self.assertEqual(response2, {"username": "testname"})
99
105
 
100
106
  def test_user_not_valid(self):
101
107
  auth = BIAuth()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cornflow
3
- Version: 1.1.5
3
+ Version: 1.2.0a1
4
4
  Summary: Cornflow is an open source multi-solver optimization server with a REST API built using flask.
5
5
  Home-page: https://github.com/baobabsoluciones/cornflow
6
6
  Author: baobab soluciones
@@ -13,7 +13,7 @@ Requires-Python: >=3.9
13
13
  Requires-Dist: alembic==1.9.2
14
14
  Requires-Dist: apispec<=6.3.0
15
15
  Requires-Dist: click<=8.1.7
16
- Requires-Dist: cornflow-client>=1.1.0
16
+ Requires-Dist: cornflow-client==1.2.0a1
17
17
  Requires-Dist: cryptography<=42.0.5
18
18
  Requires-Dist: disposable-email-domains>=0.0.86
19
19
  Requires-Dist: Flask==2.3.2
@@ -40,6 +40,7 @@ Requires-Dist: requests<=2.32.3
40
40
  Requires-Dist: SQLAlchemy==1.3.21
41
41
  Requires-Dist: webargs<=8.3.0
42
42
  Requires-Dist: Werkzeug==3.0.6
43
+ Requires-Dist: cachetools==5.3.3
43
44
  Dynamic: author
44
45
  Dynamic: author-email
45
46
  Dynamic: classifier
@@ -5,8 +5,8 @@ airflow_config/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
5
5
  airflow_config/plugins/XCom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  airflow_config/plugins/XCom/gce_xcom_backend.py,sha256=vCGvF2jbfZt5bOv-pk5Q_kUR6LomFUojIymimSJmj3o,1795
7
7
  cornflow/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
- cornflow/app.py,sha256=X73N64o8OGEqVIRWbC13e_4xb1lxzOH_BV3F3fzAmXE,7312
9
- cornflow/config.py,sha256=IJg757HpjRgXdW1nINHMzWRxfGPW5_8ioV9ZW1aPSNs,5585
8
+ cornflow/app.py,sha256=-RkH3E_gfVadNOGE9V4TOcqAzTIxNh4zydwv55L5DO0,7526
9
+ cornflow/config.py,sha256=aVhoGeU_NqlZlPw0PakgK78Czi2YP6uX620oCXq2S3k,5628
10
10
  cornflow/gunicorn.py,sha256=uO-Yk7w7nvQSWh12iDxsVvlG-_2BiKIIjm2UiTk4P9E,480
11
11
  cornflow/cli/__init__.py,sha256=5jBmSMpaE1S9rDaQjS8VHJ6x4FfJG8MhKzMzfw7G4Zc,743
12
12
  cornflow/cli/actions.py,sha256=BdTFucT6gZ0QJqo96Zu0C2G9acZ578tLkktKSfTybJ8,414
@@ -16,7 +16,7 @@ cornflow/cli/migrations.py,sha256=Stc8H99rG8vgo3yRJcck11zBY_EA4WqyVybglfl8zJE,16
16
16
  cornflow/cli/permissions.py,sha256=4KXKysH4g8YYQIZcPuXFS2g0xEErp-e8I_FAqMGaV7U,1006
17
17
  cornflow/cli/roles.py,sha256=NFG__qrlyOT0h4L4nwo9FSV4DKjGtMVh3gwiJxwM37w,411
18
18
  cornflow/cli/schemas.py,sha256=sxuJOZf12SBZAXDiAYNPB-n9LSxzSwkB3xyhgS_4K9A,6086
19
- cornflow/cli/service.py,sha256=7_va2Gv1qySldWtTHLL0b_Tg6tuYzAVduyeKmoiBgVs,9292
19
+ cornflow/cli/service.py,sha256=ProwHlk3s8W5JgESzBDGJ37BOE62N6VZ228zjoiA8kM,9441
20
20
  cornflow/cli/users.py,sha256=nPnu8rQNLtwmeXLwYtJ_hjlsa_24XOnQLgBJRBP9bJw,2104
21
21
  cornflow/cli/utils.py,sha256=0tF41gTt6LL9XGOizTQg2GXuOXbqLg6gapCr-HWjJ0Q,733
22
22
  cornflow/cli/views.py,sha256=Xyx2l-Sm7panxQEfR3qksCIUoqF7woMKsYgZALkxUXM,636
@@ -49,7 +49,7 @@ cornflow/endpoints/execution.py,sha256=5SWwgbxBUj_gDU6Yb7Z-iKNakr9vr3g5qU82Bw9y5
49
49
  cornflow/endpoints/health.py,sha256=TWmWjKdQOoDzpqwcfksuaAGOLIb2idxzPQcGMWrdkCY,1610
50
50
  cornflow/endpoints/instance.py,sha256=WAnloocXFxSW4vunBJo3CIHx4NzC_0GPJh5bj3ETd9U,11615
51
51
  cornflow/endpoints/licenses.py,sha256=82hHWGYvVIiyw9mlwGtMwJMDJ-ShHOi9rvuM6KvfE4U,873
52
- cornflow/endpoints/login.py,sha256=rchsQBL60FQXoub4dznB_UjQ5r9CmJBGnI-HnQY37Mk,9413
52
+ cornflow/endpoints/login.py,sha256=TeUeBFAeQkpl1FAEfe32BFaaL_pQAR4v_3Gwh-AG0bQ,10199
53
53
  cornflow/endpoints/main_alarms.py,sha256=GUB-UdnvEFi7n6FGFKO9VtZeZb4Ox3NvBMhB7rdqNyI,2006
54
54
  cornflow/endpoints/meta_resource.py,sha256=eqC6U8IpY65Cbk2WpdphRtE6o5kes2lB4LhezfUB7xI,8471
55
55
  cornflow/endpoints/permission.py,sha256=FpEBIucfUl89UaJ80SC0VR6pFAdqdSsS43SdNkcXWtI,3751
@@ -114,12 +114,12 @@ cornflow/schemas/role.py,sha256=lZYoLpA0weuDiFgpk3PWrHYJdljvZ3HEIOS-ISNLcCg,469
114
114
  cornflow/schemas/schemas.py,sha256=vNyOwrchuTT3TMR9Jj07pauSr2sFTM-rfIfiKUycOjo,433
115
115
  cornflow/schemas/solution_log.py,sha256=jSutvj0-2RJIqzn7ANLFanAD4jrSDvtgqf6DF6UZBhs,2255
116
116
  cornflow/schemas/tables.py,sha256=6uEmG_ddXVPk-itY0aWms568fKroWzv73DtaQ5aeVng,105
117
- cornflow/schemas/user.py,sha256=E5XmdgU318l4n2tS7uvKzhs06MIYtvni5ZOE7-TwkV4,2860
117
+ cornflow/schemas/user.py,sha256=K1lRrhVCf9GyVAebWs1_O2dLnFJzjZG0bMs_QCTweDk,2245
118
118
  cornflow/schemas/user_role.py,sha256=e5y6RgdZZtLqD-h2B3sa5WokI5-pT78tWw85IG34I74,615
119
119
  cornflow/schemas/view.py,sha256=ctq9Y1TmjrWdyOqgDYeEx7qbbuNLKfSiNOlFTlXmpaw,429
120
120
  cornflow/shared/__init__.py,sha256=1ahcBwWOsSjGI4FEm77JBQjitBdBszOncKcEMjzwGYE,29
121
121
  cornflow/shared/compress.py,sha256=pohQaGs1xbH8CN6URIH6BAHA--pFq7Hmjz8oI3c3B5c,1347
122
- cornflow/shared/const.py,sha256=nRZElCjbuJIpjzVlCfZjTN4mAbqDTXIyAbSMlkNL3n8,3440
122
+ cornflow/shared/const.py,sha256=ve66GYTgHppnO-oZu0LQpJq-ZjC6xAAJLVgE91Z7jiA,3147
123
123
  cornflow/shared/email.py,sha256=QNDDMv86LZObkevSCyUbLQeR2UD3zWScPIr82NDzYHQ,3437
124
124
  cornflow/shared/exceptions.py,sha256=tjXd4Hl-QPJviE2NviapS1rwd2NImFd3vMzmp6OTg28,6911
125
125
  cornflow/shared/licenses.py,sha256=Lc71Jw2NxVTFWtoXdQ9wJX_o3BDfYg1xVoehDXvnCkQ,1328
@@ -129,48 +129,48 @@ cornflow/shared/utils.py,sha256=g2ZsD3SwsqIHXZ7GWVAVB0F9gX7mT9dQkPgR2Ahsh6M,860
129
129
  cornflow/shared/utils_tables.py,sha256=A7bjpt7Metkb0FP7tKXMqOkak2fgi3O9dejYvoJBpb0,2236
130
130
  cornflow/shared/validators.py,sha256=aFKAAJ2diElUA8WdDyCcXJI6r3FV7HFVzoOTC6t4f8Y,4803
131
131
  cornflow/shared/authentication/__init__.py,sha256=cJIChk5X6hbA_16usEvfHr8g4JDFI6WKo0GPVOOiYHA,137
132
- cornflow/shared/authentication/auth.py,sha256=VDRQaP9Oarg2i66CPAAQgvhw4uY1Un1SgTAnoMGa_Jc,18800
132
+ cornflow/shared/authentication/auth.py,sha256=z7_uAp14psYutBIf5EJKrInQeBw1U4gvBLnullymJLQ,17888
133
133
  cornflow/shared/authentication/decorators.py,sha256=_QpwOU1kYzpaK85Dl0Btdj5hG8Ps47PFgySp_gqhlgk,1276
134
134
  cornflow/shared/authentication/ldap.py,sha256=QfdC2X_ZMcIJabKC5pYWDGMhS5pIOJJvdZXuuiruq-M,4853
135
135
  cornflow/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
136
  cornflow/tests/const.py,sha256=_5BYFGN42Xg0PXMR8UU5DBL6dYmYn5rgRBgPyptrKso,2499
137
137
  cornflow/tests/custom_liveServer.py,sha256=I_0YNrcKIwVmRov3zCQMWwcCWkMe5V246Hpa4gS8AZE,3079
138
- cornflow/tests/custom_test_case.py,sha256=X1j-cy9QKhF4W6_7jcJsTm-0Jn6lluq6gj-g126dFpQ,35945
138
+ cornflow/tests/custom_test_case.py,sha256=3ymIbGFifEB78OhMGUYNhkSj5PN5LlmJ23JsbH5ylEQ,36849
139
139
  cornflow/tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
140
140
  cornflow/tests/integration/test_commands.py,sha256=FZcoEM-05D4MBMe0L0V-0sxk_L0zMbzQxb9UCd7iBe0,695
141
141
  cornflow/tests/integration/test_cornflowclient.py,sha256=ioAQmQKWW6mXVJhdF4LECZcGIOa_N0xPkFaGWGtxOO8,20963
142
142
  cornflow/tests/ldap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
143
  cornflow/tests/ldap/test_ldap_authentication.py,sha256=6Gu1WkF7MQmcV_10IJkpo2qEloZZ9zjpV18ANDD0HRw,4286
144
144
  cornflow/tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
145
- cornflow/tests/unit/test_actions.py,sha256=Lgr_HYVLQ7PnAapC7Sz3oTrv0GWGva_6TAVMi6pERK0,3167
145
+ cornflow/tests/unit/test_actions.py,sha256=plgnzBJnDiZRdVxt1sNJNL2KbW5ijPZ6MHdIUWO0_As,3167
146
146
  cornflow/tests/unit/test_alarms.py,sha256=GDqCszPgpyEgJ-NZsXWrNid4tzoOywVdPUCYsR_mV5M,2687
147
- cornflow/tests/unit/test_apiview.py,sha256=ws74KU4O1VvKWsgLeFFpgDJxrTFf0cvB4NBX6Gaq7vw,3613
147
+ cornflow/tests/unit/test_apiview.py,sha256=HHZ--OGDDQLVGTN46BaUcs-7xWSXbMFmacbbhGlQbzQ,3613
148
148
  cornflow/tests/unit/test_application.py,sha256=ZVmTQDUOkPRxHqt6mWU9G_lQ3jJNMJR0cx7IkLMFGrU,1715
149
- cornflow/tests/unit/test_cases.py,sha256=KnkvLsEOZXvosuE2fH8_i6iETlvWF3u04363rmmj8mM,38089
149
+ cornflow/tests/unit/test_cases.py,sha256=1EvabDK08K0CovXvReLCfXiO6n_MXdNcwuCrGPbTVw8,37708
150
150
  cornflow/tests/unit/test_cli.py,sha256=0l1_fYvJg-f_wA1SFgtMTzdBRy6uLhp58xWkNIR-tXQ,18602
151
151
  cornflow/tests/unit/test_commands.py,sha256=kvO8Vn60rj3WBG2oXw7NpDSEYoGLNe806txbJPhtNJo,14722
152
- cornflow/tests/unit/test_dags.py,sha256=-QSQpdQZywGTnCRxhpoe9ilT0D0BLQRfnh_OMD9tx0Q,13401
152
+ cornflow/tests/unit/test_dags.py,sha256=DR4YK7DNpifQFa4kcB0rlrPcqhllvYWjj7XsTd7DkgI,13401
153
153
  cornflow/tests/unit/test_data_checks.py,sha256=6s50d1iuRTUcAYn14oEcRS39ZZ6E9ussU4YpkpYhtC4,8612
154
154
  cornflow/tests/unit/test_example_data.py,sha256=D-Tgnqw7NZlnBXaDcUU0reNhAca5JlJP2Sdn3KdS4Sw,4127
155
155
  cornflow/tests/unit/test_executions.py,sha256=_hIaiZri7Blyx4DYhBDHh-0peU1HQh66RSPqQJFveE8,17501
156
156
  cornflow/tests/unit/test_generate_from_schema.py,sha256=L1EdnASbDJ8SjrX1V4WnUKKwV0sRTwVnNYnxSpyeSeQ,15376
157
157
  cornflow/tests/unit/test_health.py,sha256=0E0HXMb63_Z8drbLZdxnJwtTbQyaZS9ZEHut6qsDbh8,1033
158
- cornflow/tests/unit/test_instances.py,sha256=RaD9Tue2HODKThBNhciu6krdIvrauDLxOq4Y6a_z8DU,10573
159
- cornflow/tests/unit/test_instances_file.py,sha256=zXxSlOM_MMkFvpWNX-iatD40xoIAOGQkinCLf1txb0M,1986
160
- cornflow/tests/unit/test_licenses.py,sha256=jgnfE4UMFooGn44HK_KspJXIpmLjUpK_WgsBBeTO5eI,1534
161
- cornflow/tests/unit/test_log_in.py,sha256=FA08e221NhsFTdLV0n0BMf6SB9bZ2zJppBi7xQ9GlNg,16440
158
+ cornflow/tests/unit/test_instances.py,sha256=ovcKfykuyx7IoOL-aetFLfJ1lpbTSxUDf2kKMuB-WMY,10573
159
+ cornflow/tests/unit/test_instances_file.py,sha256=sbodxnuoT7n7jdELz-wpVXWt76E5UzUrQYyVpvnfbco,1986
160
+ cornflow/tests/unit/test_licenses.py,sha256=oj1YdqdxzEdRtxyQiFmRyXyvLzNbl6BeiGCCZH_Y42c,1534
161
+ cornflow/tests/unit/test_log_in.py,sha256=fI3JK7vrxSZkun027YUM3geSAcWYLRu_vXJ0Rubgnf0,18077
162
162
  cornflow/tests/unit/test_main_alarms.py,sha256=y--A4Ap2X38TCCRgbimzaZ-QvnTqZY8KHCv7C8kTTwc,2060
163
- cornflow/tests/unit/test_permissions.py,sha256=4mLj3GI0Bvhy927eXu_RyAmK8i2XD7raYc6W8lyAO04,8782
164
- cornflow/tests/unit/test_roles.py,sha256=xZ3TohL_sv1ZBPvHv_nnYSsKEhBlrzIchx9soaTb5Ow,16581
163
+ cornflow/tests/unit/test_permissions.py,sha256=Jd-4PtqBcWGrSZAuTlJD82qE65D9ZtGWBM6sJY1f_yA,8782
164
+ cornflow/tests/unit/test_roles.py,sha256=qY6vtVyIKAAfrdYMYwUJL2OS3plredfzT5loKjUF9p0,16584
165
165
  cornflow/tests/unit/test_schema_from_models.py,sha256=7IfycOGO3U06baX8I-OPJfu-3ZAn5cv8RCdj9wvalMk,4421
166
166
  cornflow/tests/unit/test_schemas.py,sha256=6SpkeYsS3oWntUZEF3GldLqmNa-hpxg-WrKJVTgc-B4,7468
167
167
  cornflow/tests/unit/test_sign_up.py,sha256=-i6VO9z1FwqRHFvaSrpWAzOZx6qa8mHUEmmsjuMXjn8,3481
168
- cornflow/tests/unit/test_tables.py,sha256=dY55YgaCkyqwJnqn0LbZHNeXBoL4ZxXWwKkCoTF4WVE,8947
169
- cornflow/tests/unit/test_token.py,sha256=OEVPgG8swSMkUbuGJGfGF5Z27utMLICn1eIyma1cM9E,3760
168
+ cornflow/tests/unit/test_tables.py,sha256=7lZsdun8_SWvYO-6ezQeuTxRat_fyP9vCfXoU7zvHBU,8947
169
+ cornflow/tests/unit/test_token.py,sha256=n-QA6bFNKMVR4tsuUiso6Gq_CZ_NuTXLetoJzDOzYhc,3982
170
170
  cornflow/tests/unit/test_users.py,sha256=WfaMcybPpR7rspXyvzHGgw25p751hMPAV0DOp_caSPM,22430
171
171
  cornflow/tests/unit/tools.py,sha256=ag3sWv2WLi498R1GL5AOUnXqSsszD3UugzLZLC5NqAw,585
172
- cornflow-1.1.5.dist-info/METADATA,sha256=MRtOwHj41Ls5zLte8PjpFhekW3156LX9bOTKX0KyA3U,9494
173
- cornflow-1.1.5.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
174
- cornflow-1.1.5.dist-info/entry_points.txt,sha256=q9cPKAFBsmHkERCqQ2JcOTM-tVBLHTl-DGxwCXowAWM,46
175
- cornflow-1.1.5.dist-info/top_level.txt,sha256=Qj9kLFJW1PLb-ZV2s_aCkQ-Wi5W6KC6fFR-LTBrx-rU,24
176
- cornflow-1.1.5.dist-info/RECORD,,
172
+ cornflow-1.2.0a1.dist-info/METADATA,sha256=qbyhVR1FExIEv78HbSs4AQ_l05qUW5TNE-cl-sznBdw,9531
173
+ cornflow-1.2.0a1.dist-info/WHEEL,sha256=nn6H5-ilmfVryoAQl3ZQ2l8SH5imPWFpm1A5FgEuFV4,91
174
+ cornflow-1.2.0a1.dist-info/entry_points.txt,sha256=q9cPKAFBsmHkERCqQ2JcOTM-tVBLHTl-DGxwCXowAWM,46
175
+ cornflow-1.2.0a1.dist-info/top_level.txt,sha256=Qj9kLFJW1PLb-ZV2s_aCkQ-Wi5W6KC6fFR-LTBrx-rU,24
176
+ cornflow-1.2.0a1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.8.0)
2
+ Generator: setuptools (75.8.1)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5