We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec102cb commit c9c1797Copy full SHA for c9c1797
tests/conftest.py
@@ -254,6 +254,20 @@ def return_ds(server=None):
254
return return_ds
255
256
257
+@pytest.fixture()
258
+def fluent_axial_comp_flprj():
259
+ """Return a function which creates a data sources
260
+ with a 'flrpj' file of fluent axial compressor case."""
261
+
262
+ def return_ds(server=None):
263
+ ds = core.DataSources(server=server)
264
+ files = examples.download_fluent_axial_comp(server=server)
265
+ ds.set_result_file_path(files["flprj"], "flprj")
266
+ return ds
267
268
+ return return_ds
269
270
271
@pytest.fixture()
272
def fluent_mixing_elbow_steady_state():
273
"""Return a function which creates a data sources
0 commit comments