Skip to content

Commit ed70232

Browse files
author
Jaya Mohan
committed
remove u unused value on test_5_tcopflow.py
1 parent e48546d commit ed70232

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

tests/interfaces/python/test_0_initialize.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# test initializing exago only once
22
import os
33
import pytest
4-
from check_preconditions import check_preconditions
54
import mpi4py.rc
65
mpi4py.rc.threads = False
76
from mpi4py import MPI # noqa
7+
from check_preconditions import check_preconditions
8+
check_preconditions()
9+
import exago
810
import exago # noqa
911

1012

tests/interfaces/python/test_5_tcopflow.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010

1111
check_preconditions()
1212

13-
exago_ignore = -1000000
14-
15-
1613
def run_tcopflow(solver):
1714
tcopf = exago.TCOPFLOW()
1815
path = exago.prefix()
@@ -24,7 +21,7 @@ def run_tcopflow(solver):
2421

2522
tcopf.setup()
2623
tcopf.solve()
27-
24+
2825
assert tcopf.get_convergence_status()
2926

3027
obj = tcopf.get_objective()

0 commit comments

Comments
 (0)