You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
312 B
7 lines
312 B
# Do not collect any tests in externals. This is more robust than using
|
|
# --ignore because --ignore needs a path and it is not convenient to pass in
|
|
# the externals path (very long install-dependent path in site-packages) when
|
|
# using --pyargs
|
|
def pytest_ignore_collect(collection_path, config):
|
|
return True
|