We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2aa6f2 commit 5d6a760Copy full SHA for 5d6a760
tests/integration/test_app.py
@@ -2,8 +2,12 @@
2
import os.path as op
3
import tempfile
4
5
+import pytest
6
+
7
import pymhf
8
9
+pytestmark = pytest.mark.skipif(os.environ.get("CI") is not None, reason="Flaky on CI")
10
11
MODS_DIR = op.realpath(op.join(op.dirname(__file__), "..", "test_mods"))
12
APPS_DIR = op.realpath(op.join(op.dirname(__file__), "..", "programs"))
13
0 commit comments