Skip to content

Commit

Permalink
TST: More pypy timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
HaoZeke committed Feb 4, 2024
1 parent cc2772f commit 41623c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
from asv import config, environment, util
from asv.repo import get_repo
from asv.util import shlex_quote as quote
from . import tools

from .tools import (PYTHON_VER1, PYTHON_VER2, DUMMY1_VERSION, DUMMY2_VERSIONS, WIN, HAS_PYPY,
HAS_CONDA, HAS_VIRTUALENV, HAS_PYTHON_VER2, generate_test_repo)
Expand Down Expand Up @@ -682,6 +683,7 @@ def test_build_isolation(tmpdir):
env.install_project(conf, repo, commit_hash)


@pytest.mark.skipif(tools.HAS_PYPY, reason="Flaky on pypy")
def test_custom_commands(tmpdir):
# check custom install/uninstall/build commands work
tmpdir = str(tmpdir)
Expand Down
1 change: 1 addition & 0 deletions test/test_publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ def test_regression_atom_feed_update(dvcs_type, tmpdir):
b_content = b.find('{http://www.w3.org/2005/Atom}content')
assert a_content.text != b_content.text

@pytest.mark.skipif(tools.HAS_PYPY, reason="Flaky on pypy")
def test_branch_name_is_also_filename(tmpdir):
# gh-1209
tmpdir = str(tmpdir)
Expand Down

0 comments on commit 41623c1

Please sign in to comment.