mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
16 lines
269 B
Python
Executable File
16 lines
269 B
Python
Executable File
import sys
|
|
|
|
tests=[
|
|
("testExecs/main.exe","",{}),
|
|
("python","test_list.py",{'dir':'Wrap'}),
|
|
]
|
|
|
|
longTests=[
|
|
]
|
|
|
|
if __name__=='__main__':
|
|
import sys
|
|
from rdkit import TestRunner
|
|
failed,tests = TestRunner.RunScript('test_list.py',0,1)
|
|
sys.exit(len(failed))
|