Skip to content

Commit ef29c6a

Browse files
authored
remove dependency tests (#169)
1 parent f78b4b9 commit ef29c6a

File tree

3 files changed

+0
-59
lines changed

3 files changed

+0
-59
lines changed

src/diffpy/pdfgui/tests/__init__.py

-24
Original file line numberDiff line numberDiff line change
@@ -78,28 +78,4 @@ def test():
7878
return result
7979

8080

81-
def testdeps():
82-
"""Execute all unit tests for diffpy.pdfgui and its dependencies.
83-
84-
Returns
85-
-------
86-
result : `unittest.TestResult`
87-
"""
88-
from importlib import import_module
89-
90-
modulenames = """
91-
diffpy.pdfgui.tests
92-
diffpy.structure.tests
93-
diffpy.pdffit2.tests
94-
diffpy.utils.tests
95-
""".split()
96-
suite = unittest.TestSuite()
97-
for mname in modulenames:
98-
mod = import_module(mname)
99-
suite.addTests(mod.testsuite())
100-
runner = unittest.TextTestRunner()
101-
result = runner.run(suite)
102-
return result
103-
104-
10581
# End of file

src/diffpy/pdfgui/tests/conftest.py

-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
import json
2-
import subprocess
32
from pathlib import Path
43

54
import pytest
65

76

8-
def pytest_collection_modifyitems(session, config, items):
9-
subprocess.run(["python", "-m", "diffpy.pdfgui.tests.rundeps"], check=True)
10-
11-
127
@pytest.fixture
138
def user_filesystem(tmp_path):
149
base_dir = Path(tmp_path)

src/diffpy/pdfgui/tests/rundeps.py

-30
This file was deleted.

0 commit comments

Comments
 (0)