mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
15 lines
233 B
Python
15 lines
233 B
Python
import sys
|
|
|
|
tests=[
|
|
("testExecs/testFeatures.exe","",{}),
|
|
]
|
|
|
|
longTests=[
|
|
]
|
|
|
|
if __name__=='__main__':
|
|
import sys
|
|
from rdkit import TestRunner
|
|
failed,tests = TestRunner.RunScript('test_list.py',0,1)
|
|
sys.exit(len(failed))
|