We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8701e7 commit c739ad8Copy full SHA for c739ad8
1 file changed
rmgpy/molecule/pathfinderTest.py
@@ -313,7 +313,7 @@ def test_c5h6o2(self):
313
314
def test_c6h6o4(self):
315
inchi = "InChI=1S/C6H6O4/c1-2-4-9-6(7)3-5-10-8/h2-3H,1,5H2"
316
- mol = Molecule().from_inchi(inchi)
+ mol = Molecule().from_inchi(inchi, raise_atomtype_exception=False)
317
start = mol.atoms[0]
318
path = find_butadiene_end_with_charge(start)
319
idx_path = [mol.atoms.index(atom) + 1 for atom in path[0::2]]
@@ -525,3 +525,6 @@ def test_hnnoo(self):
525
mol = Molecule().from_smiles(smiles)
526
paths = find_N5dc_radical_delocalization_paths(mol.atoms[1])
527
self.assertTrue(paths)
528
+
529
+if __name__ == '__main__':
530
+ unittest.main(testRunner=unittest.TextTestRunner(verbosity=2))
0 commit comments