Skip to content

Commit

Permalink
see what happens if we remove the flaky mark (#1152)
Browse files Browse the repository at this point in the history
* see what happens if we remove the flaky mark

* now that we run this one slow test on PRs, we should make sure it gets cancled each time a push is made
  • Loading branch information
mikemhenry authored Feb 20, 2025
1 parent d042738 commit 064f33d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/package-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ on:
# At 07:00 UTC on Monday and Thursday.
- cron: "0 7 * * *"

concurrency:
group: "${{ github.workflow }}-${{ github.ref }}"
cancel-in-progress: true

defaults:
run:
shell: bash -leo pipefail {0}
Expand Down
2 changes: 1 addition & 1 deletion openfe/tests/protocols/test_openmmutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -931,7 +931,7 @@ def test_openeye_import_error(self, monkeypatch, uncharged_mol):
@pytest.mark.slow
@pytest.mark.download
# Sometimes we get a DOI lookup error from duecredit
@pytest.mark.flaky(reruns=3, only_rerun=ValueError, reruns_delay=10)
#@pytest.mark.flaky(reruns=3, only_rerun=ValueError, reruns_delay=10)
def test_forward_backwards_failure(simulation_nc):
rep = multistate.multistatereporter.MultiStateReporter(
simulation_nc,
Expand Down

0 comments on commit 064f33d

Please sign in to comment.