File tree 3 files changed +21
-0
lines changed
ibis/backends/flink/tests
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,9 @@ jobs:
186
186
- name : checkout
187
187
uses : actions/checkout@v4
188
188
189
+ - name : install pyflink
190
+ run : nix develop --ignore-environment --keep HOME -c pip install apache-flink
191
+
189
192
- name : run doctest
190
193
# keep HOME because duckdb (which we use for doctests) wants to use
191
194
# that for extensions
@@ -200,6 +203,21 @@ jobs:
200
203
- name : check that all frozen computations were done before push
201
204
run : git diff --exit-code --stat
202
205
206
+ - name : ls links 1
207
+ run : ls /home/runner/work/ibis/ibis/docs/_output/backends/
208
+
209
+ - name : ls links 2
210
+ run : ls /home/runner/work/ibis/ibis/docs/_output/
211
+
212
+ - name : ls links 3
213
+ run : ls /home/runner/work/ibis/ibis/docs/
214
+
215
+ - name : support
216
+ run : nix develop --ignore-environment -c python ./gen_matrix.py
217
+
218
+ - name : redirect links
219
+ run : python ./gen_redirects.py
220
+
203
221
- name : verify internal links
204
222
run : nix develop --ignore-environment '.#links' -c just checklinks --offline --no-progress
205
223
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ def main():
45
45
"docs" , "backends" , "raw_support_matrix.csv"
46
46
).open (mode = "w" ) as f :
47
47
df .to_csv (f , index_label = "FullOperation" )
48
+ print (f"CSV output path: { f .name } " ) # noqa: T201
48
49
49
50
50
51
if __name__ == "__main__" :
Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ def test_force_recreate_in_mem_table(
242
242
tbl_properties = tbl_properties ,
243
243
)
244
244
assert temp_table in con .list_tables ()
245
+ assert temp_table in con .list_views ()
245
246
if schema is not None :
246
247
assert new_table .schema () == schema
247
248
@@ -254,6 +255,7 @@ def test_force_recreate_in_mem_table(
254
255
overwrite = True ,
255
256
)
256
257
assert temp_table in con .list_tables ()
258
+ assert temp_table in con .list_views ()
257
259
if schema is not None :
258
260
assert new_table .schema () == schema
259
261
You can’t perform that action at this time.
0 commit comments