mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* Issue #1071: add yapf configuration file * yapf formatting of Code directory * yapf formatting of Contrib directory * yapf formatting of Data directory * yapf formatting of Docs directory * yapf formatting of External directory * yapf formatting of Projects directory * yapf formatting of Regress directory * yapf formatting of Scripts directory * yapf formatting of Web directory * yapf formatting of rdkit directory
29 lines
1.2 KiB
Python
Executable File
29 lines
1.2 KiB
Python
Executable File
tests = [
|
|
("python", "test_list.py", {'dir': 'RDGeneral'}),
|
|
("python", "test_list.py", {'dir': 'Geometry'}),
|
|
("python", "test_list.py", {'dir': 'Geometry/Wrap'}),
|
|
("python", "test_list.py", {'dir': 'DataStructs'}),
|
|
("python", "test_list.py", {'dir': 'DataStructs/Wrap'}),
|
|
("python", "test_list.py", {'dir': 'Query'}),
|
|
("python", "test_list.py", {'dir': 'DataManip/MetricMatrixCalc'}),
|
|
("python", "test_list.py", {'dir': 'DataManip/MetricMatrixCalc/Wrap'}),
|
|
("python", "test_list.py", {'dir': 'ML/InfoTheory/Wrap'}),
|
|
("python", "test_list.py", {'dir': 'Numerics'}),
|
|
("python", "test_list.py", {'dir': 'ForceField'}),
|
|
("python", "test_list.py", {'dir': 'DistGeom'}),
|
|
("python", "test_list.py", {'dir': 'ChemicalFeatures'}),
|
|
("python", "test_list.py", {'dir': 'ChemicalFeatures/Wrap'}),
|
|
#("python","test_list.py",{'dir':'PgSQL/RDLib'}),
|
|
("python", "test_list.py", {'dir': 'SimDivPickers/Wrap'}),
|
|
("python", "test_list.py", {'dir': 'ML'}),
|
|
("python", "test_list.py", {'dir': 'GraphMol'}),
|
|
]
|
|
|
|
longTests = []
|
|
|
|
if __name__ == '__main__':
|
|
import sys
|
|
from rdkit import TestRunner
|
|
failed, tests = TestRunner.RunScript('test_list.py', 0, 1)
|
|
sys.exit(len(failed))
|