Skip to content

Commit fec3cd5

Browse files
authored
test(prt): fix test skip condition (#2284)
1 parent 79cbcbb commit fec3cd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

autotest/test_prt_disv_vert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ def check_output(idx, test, snapshot):
245245
# load mf6 pathline results
246246
mf6_pls = pd.read_csv(prt_ws / prt_track_csv_file, na_filter=False)
247247

248-
if is_in_ci() and "ifort" in environ.get("FC", ""):
248+
if is_in_ci() and "gfortran" not in environ.get("FC", ""):
249249
return
250250

251251
assert snapshot == mf6_pls.drop("name", axis=1).round(2).to_records(index=False)

0 commit comments

Comments
 (0)