Skip to content

Commit

Permalink
skip flaky test
Browse files Browse the repository at this point in the history
Signed-off-by: Fabrice Normandin <fabrice.normandin@gmail.com>
  • Loading branch information
lebrice committed Apr 14, 2022
1 parent 872f094 commit 8e153ee
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/functional/algos/test_algos.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,12 @@ def test_cardinality_stop_loguniform(algorithm):


@pytest.mark.parametrize(
"algorithm", algorithm_configs.values(), ids=list(algorithm_configs.keys())
"algorithm",
[
pytest.param(value, marks=pytest.mark.skipif(key == "tpe", reason="Flaky test"))
for key, value in algorithm_configs.items()
],
ids=list(algorithm_configs.keys()),
)
def test_with_fidelity(algorithm):
"""Test a scenario with fidelity."""
Expand Down

0 comments on commit 8e153ee

Please sign in to comment.