Skip to content

Commit 7b42859

Browse files
committed
Remove WeakStationarity property tester
1 parent 585da20 commit 7b42859

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

tests/unit/aggregation/_property_testers.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -140,15 +140,3 @@ def test_stationarity_property(cls, aggregator: Aggregator, stationary_matrix: T
140140
@mark.parametrize("non_stationary_matrix", weak_stationary_matrices + matrices)
141141
def test_non_stationarity_property(cls, aggregator: Aggregator, non_stationary_matrix: Tensor):
142142
cls._assert_non_stationarity_property(aggregator, non_stationary_matrix)
143-
144-
145-
class WeakStationarityProperty(StationarityProperty):
146-
@classmethod
147-
@mark.parametrize("stationary_matrix", strong_stationary_matrices + weak_stationary_matrices)
148-
def test_stationarity_property(cls, aggregator: Aggregator, stationary_matrix: Tensor):
149-
cls._assert_stationarity_property(aggregator, stationary_matrix)
150-
151-
@classmethod
152-
@mark.parametrize("non_stationary_matrix", matrices)
153-
def test_non_stationarity_property(cls, aggregator: Aggregator, non_stationary_matrix: Tensor):
154-
cls._assert_non_stationarity_property(aggregator, non_stationary_matrix)

tests/unit/aggregation/test_mgda.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
ExpectedStructureProperty,
1010
NonConflictingProperty,
1111
PermutationInvarianceProperty,
12-
WeakStationarityProperty,
1312
)
1413

1514

@@ -18,7 +17,6 @@ class TestMGDA(
1817
ExpectedStructureProperty,
1918
NonConflictingProperty,
2019
PermutationInvarianceProperty,
21-
WeakStationarityProperty,
2220
):
2321
pass
2422

0 commit comments

Comments
 (0)