forked from mirrors/gecko-dev
MozReview-Commit-ID: 5qfK6OygVMH --HG-- rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
29 lines
721 B
Python
29 lines
721 B
Python
import py
|
|
import subprocess
|
|
import sys
|
|
import pytest
|
|
import _pytest
|
|
|
|
MODSET = [
|
|
x
|
|
for x in py.path.local(_pytest.__file__).dirpath().visit("*.py")
|
|
if x.purebasename != "__init__"
|
|
]
|
|
|
|
|
|
@pytest.mark.parametrize("modfile", MODSET, ids=lambda x: x.purebasename)
|
|
def test_fileimport(modfile):
|
|
# this test ensures all internal packages can import
|
|
# without needing the pytest namespace being set
|
|
# this is critical for the initialization of xdist
|
|
|
|
res = subprocess.call(
|
|
[
|
|
sys.executable,
|
|
"-c",
|
|
"import sys, py; py.path.local(sys.argv[1]).pyimport()",
|
|
modfile.strpath,
|
|
]
|
|
)
|
|
if res:
|
|
pytest.fail("command result %s" % res)
|