Skip to content

Commit

Permalink
* add flaky to test_cli_cmds::test_make_program
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhughes-usgs committed Jul 5, 2023
1 parent 445adac commit 254996e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions autotest/test_cli_cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
import subprocess

import pytest
from flaky import flaky

RERUNS = 3

targets = (
"triangle",
Expand Down Expand Up @@ -47,6 +50,7 @@ def clean_up() -> None:

@pytest.mark.dependency(name="make_program")
@pytest.mark.base
@flaky(max_runs=RERUNS)
@pytest.mark.parametrize("target", targets)
def test_make_program(target: str) -> None:
cmd = [
Expand Down

0 comments on commit 254996e

Please sign in to comment.