Ignore test_cypress_datatrans.py
This commit is contained in:
parent
a53459f8bf
commit
dc576f4fa3
|
|
@ -2,6 +2,11 @@ import pytest
|
||||||
from _pytest.runner import runtestprotocol
|
from _pytest.runner import runtestprotocol
|
||||||
|
|
||||||
|
|
||||||
|
def pytest_ignore_collect(path, config):
|
||||||
|
if path.basename == "test_cypress_datatrans.py":
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
@pytest.hookimpl(tryfirst=True)
|
@pytest.hookimpl(tryfirst=True)
|
||||||
def pytest_collection_modifyitems(config, items):
|
def pytest_collection_modifyitems(config, items):
|
||||||
parallel_items = []
|
parallel_items = []
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue