We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b01e3a commit 3b53448Copy full SHA for 3b53448
tests/Python/test_IsoSpecPy.py
@@ -27,6 +27,9 @@ def sprint(s):
27
# - but is still WAAAY too strict. Often we can justifiably get different configurations, or different counts of configurations...
28
29
molecules = "H2O1 C100 P1 P100 C1 H10C10O10N10S5 Se1 Se10 Sn1 Sn4 Sn4C1 C2H6O1 C1000 C520H817N139O147S8 C1H1O2N2Se1Sn1P1 P1C1Sn1 Se5 Sn5 Se50 Sn15 Se2Sn2C2O2N2S2B2He2U2Na2Cl2".split()
30
+import platform
31
+if platform.python_implementation() != "CPython":
32
+ molecules = molecules[:5] # limit test size on non-CPython implementations
33
34
parameters = list(map(float, "0.0 0.1 0.5 0.01 0.9 0.99 0.01 0.0001 0.999 0.362 0.852348".split()))
35
0 commit comments