#4867 Rename python examples to avoid mixed case

This commit is contained in:
Gaute Lindkvist 2019-10-15 16:04:06 +02:00
parent d21afc5a41
commit bc8134009b
25 changed files with 20 additions and 26 deletions

View File

@ -170,26 +170,26 @@ if (RESINSIGHT_GRPC_PYTHON_EXECUTABLE)
"rips/pdmobject.py"
"rips/plot.py"
"rips/view.py"
"rips/PythonExamples/InstanceExample.py"
"rips/PythonExamples/CommandExample.py"
"rips/PythonExamples/CaseGridGroup.py"
"rips/PythonExamples/CaseInfoStreamingExample.py"
"rips/PythonExamples/ExportPlots.py"
"rips/PythonExamples/ExportSnapshots.py"
"rips/PythonExamples/ErrorHandling.py"
"rips/PythonExamples/SoilPorvAsync.py"
"rips/PythonExamples/SoilPorvSync.py"
"rips/PythonExamples/SelectedCases.py"
"rips/PythonExamples/AllCases.py"
"rips/PythonExamples/SetGridProperties.py"
"rips/PythonExamples/SetCellResult.py"
"rips/PythonExamples/SetFlowDiagnosticsResult.py"
"rips/PythonExamples/GridInformation.py"
"rips/PythonExamples/InputPropTestSync.py"
"rips/PythonExamples/InputPropTestAsync.py"
"rips/PythonExamples/SoilAverageAsync.py"
"rips/PythonExamples/SoilAverageSync.py"
"rips/PythonExamples/ViewExample.py"
"rips/PythonExamples/instance_example.py"
"rips/PythonExamples/command_example.py"
"rips/PythonExamples/case_grid_group.py"
"rips/PythonExamples/case_info_streaming_example.py"
"rips/PythonExamples/export_plots.py"
"rips/PythonExamples/export_snapshots.py"
"rips/PythonExamples/error_handling.py"
"rips/PythonExamples/soil_porv_async.py"
"rips/PythonExamples/soil_porv_sync.py"
"rips/PythonExamples/selected_cases.py"
"rips/PythonExamples/all_cases.py"
"rips/PythonExamples/set_grid_properties.py"
"rips/PythonExamples/set_cell_Result.py"
"rips/PythonExamples/set_flow_diagnostics_result.py"
"rips/PythonExamples/grid_information.py"
"rips/PythonExamples/input_prop_test_sync.py"
"rips/PythonExamples/input_prop_test_async.py"
"rips/PythonExamples/soil_average_async.py"
"rips/PythonExamples/soil_average_sync.py"
"rips/PythonExamples/view_example.py"
"rips/tests/test_cases.py"
"rips/tests/test_grids.py"
"rips/tests/test_properties.py"

View File

@ -1,6 +0,0 @@
import rips
resinsight = rips.Instance.find()
if resinsight is not None:
print(resinsight.version_string())
print("Is this a console run?", resinsight.is_console())