Skip to content

Commit

Permalink
Remove fixed seed for exact percentile integration tests (#10795)
Browse files Browse the repository at this point in the history
Signed-off-by: Nghia Truong <[email protected]>
  • Loading branch information
ttnghia authored May 14, 2024
1 parent 3546552 commit 260c63e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions integration_tests/src/main/python/hash_aggregate_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,6 @@ def exact_percentile_groupby(df):
)

@ignore_order
@datagen_overrides(seed=0, reason="https://github.com/NVIDIA/spark-rapids/issues/10719")
@pytest.mark.parametrize('data_gen', exact_percentile_groupby_data_gen, ids=idfn)
def test_exact_percentile_groupby(data_gen):
assert_gpu_and_cpu_are_equal_collect(
Expand All @@ -1012,7 +1011,6 @@ def test_exact_percentile_groupby(data_gen):
@allow_non_gpu('ObjectHashAggregateExec', 'SortAggregateExec', 'ShuffleExchangeExec', 'HashPartitioning',
'AggregateExpression', 'Alias', 'Cast', 'Literal', 'ProjectExec',
'Percentile')
@datagen_overrides(seed=0, reason="https://github.com/NVIDIA/spark-rapids/issues/10738")
@pytest.mark.parametrize('data_gen', exact_percentile_groupby_cpu_fallback_data_gen, ids=idfn)
@pytest.mark.parametrize('replace_mode', ['partial', 'final|complete'], ids=idfn)
@pytest.mark.parametrize('use_obj_hash_agg', ['false', 'true'], ids=idfn)
Expand Down

0 comments on commit 260c63e

Please sign in to comment.