Skip to content
Snippets Groups Projects
Verified Commit 0b823244 authored by Lars Bilke's avatar Lars Bilke
Browse files

[py] ruff fixes in Tests/Python/test_simulator_mesh_interface.py.

parent 95625edd
No related branches found
No related tags found
No related merge requests found
import os
import sys import sys
import tempfile import tempfile
from pathlib import Path
import numpy as np import numpy as np
import ogs.mesh as mesh # noqa: F401 import ogs.mesh as mesh # noqa: F401
...@@ -79,9 +79,10 @@ def checkCells(cells, celltypes, points): ...@@ -79,9 +79,10 @@ def checkCells(cells, celltypes, points):
def test_simulator(): def test_simulator():
current_dir = Path(__file__).parent.abspath()
arguments = [ arguments = [
"", "",
f"{os.path.abspath(os.path.dirname(__file__))}/../Data/Parabolic/LiquidFlow/Flux/3D/Hex/cuboid_1x1x1_hex_27_Dirichlet_Dirichlet_Python.prj", f"{current_dir}/../Data/Parabolic/LiquidFlow/Flux/3D/Hex/cuboid_1x1x1_hex_27_Dirichlet_Dirichlet_Python.prj",
"-o " + tempfile.mkdtemp(), "-o " + tempfile.mkdtemp(),
] ]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment