Drop custom logic for new_resolver tests

This commit is contained in:
Pradyun Gedam 2020-10-30 06:02:41 +05:30
parent 2d91950cad
commit 07ec3013f0
No known key found for this signature in database
GPG Key ID: FF99710C4332258E
2 changed files with 0 additions and 7 deletions

View File

@ -61,7 +61,6 @@ markers =
mercurial: VCS: Mercurial
git: VCS: git
yaml: yaml based tests
fails_on_new_resolver: Does not yet work on the new resolver
[coverage:run]
branch = True

View File

@ -68,12 +68,6 @@ def pytest_collection_modifyitems(config, items):
if item.get_closest_marker('network') is not None:
item.add_marker(pytest.mark.flaky(reruns=3, reruns_delay=2))
if (item.get_closest_marker('fails_on_new_resolver') and
config.getoption("--new-resolver") and
not config.getoption("--new-resolver-runtests")):
item.add_marker(pytest.mark.skip(
'This test does not work with the new resolver'))
if six.PY3:
if (item.get_closest_marker('incompatible_with_test_venv') and
config.getoption("--use-venv")):