Skip to content

Commit 710a2de

Browse files
committed
reduced dataset size for benchmark tests for brick sort sequential and parallel
1 parent 9377c6b commit 710a2de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pydatastructs/linear_data_structures/tests/benchmarks/test_algorithms.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ def test_insertion_sort():
5555

5656
@pytest.mark.xfail
5757
def test_brick_sort():
58-
_test_common_sort(brick_sort, size=2000)
58+
_test_common_sort(brick_sort, size=500)
5959

6060

6161
@pytest.mark.xfail
6262
def test_brick_sort_parallel():
63-
_test_common_sort(brick_sort_parallel, size=2000, num_threads=4)
63+
_test_common_sort(brick_sort_parallel, size=500, num_threads=4)
6464

6565

6666
@pytest.mark.xfail

0 commit comments

Comments
 (0)