Skip to content

Commit 7145489

Browse files
committed
Fix
1 parent 779aa74 commit 7145489

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/_heavy_tests/test_bicg/test_bicg.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import sscha, sscha.Tools
44

55
import matplotlib.pyplot as plt
6+
import pytest
67

78

89
def get_matrix():
@@ -24,6 +25,7 @@ def get_matrix():
2425
return A, b
2526

2627

28+
@pytest.mark.skip()
2729
def test_fom(plot = False):
2830
print("Getting matrix...")
2931
A, b = get_matrix()
@@ -59,6 +61,7 @@ def store(x, iters):
5961
plt.plot(distance, marker = "o")
6062
plt.show()
6163

64+
@pytest.mark.skip()
6265
def test_bicg():
6366
# Generate a random matrix
6467
A, b = get_matrix()

0 commit comments

Comments
 (0)