Skip to content

Commit

Permalink
CI,TST: Skip flaky pypy tests
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Feb 1, 2024
1 parent a03fb3e commit 85ab890
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@

from . import tools

pytestmark = pytest.mark.skipif(tools.HAS_PYPY, reason="Flaky on pypy")

BENCHMARK_DIR = abspath(join(dirname(__file__), 'benchmark'))


Expand Down
2 changes: 2 additions & 0 deletions test/test_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@

from . import tools

pytestmark = pytest.mark.skipif(tools.HAS_PYPY, reason="Randomly times out on pypy")


def _test_generic_repo(conf, tmpdir, hash_range, main, branch, is_remote=False):
workcopy_dir = tempfile.mkdtemp(dir=tmpdir, prefix="workcopy")
Expand Down
1 change: 1 addition & 0 deletions test/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ def check_env_matrix(env_build, env_nobuild):
check_env_matrix({'SOME_TEST_VAR': ['1', '2']}, {})


@pytest.mark.skipif(tools.HAS_PYPY, reason="Times out randomly on pypy")
def test_parallel(basic_conf_2, dummy_packages):
tmpdir, local, conf, machine_file = basic_conf_2

Expand Down

0 comments on commit 85ab890

Please sign in to comment.