Skip to content

Commit

Permalink
Remove poorly conditioned test
Browse files Browse the repository at this point in the history
  • Loading branch information
obackhouse committed Sep 21, 2024
1 parent c8e0653 commit 6cbcc8c
Showing 1 changed file with 0 additions and 27 deletions.
27 changes: 0 additions & 27 deletions tests/test_minimal.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,33 +155,6 @@ def tearDownClass(cls):
test_gebcc = None


@pytest.mark.reference
class Minimal_HeH_CC3_Tests(unittest.TestCase, _Minimal_Tests):
ENERGY_UEBCC = -2.824682673746
ANSATZ = "CC3"
CHECK_DMS = False

@classmethod
def setUpClass(cls):
cls.mol = gto.Mole()
cls.mol.atom = "He 0 0 0; H 0 0 1.5"
cls.mol.basis = "sto3g"
cls.mol.charge = 1
cls.mol.verbose = 0
cls.mol.build()

cls.mf = scf.UHF(cls.mol)
cls.mf.conv_tol = 1e-12
cls.mf.kernel()

@classmethod
def tearDownClass(cls):
del cls.mol, cls.mf

test_rebcc = None
test_gebcc = None


@pytest.mark.reference
class Minimal_O2_MP2_Tests(unittest.TestCase, _Minimal_Tests):
ENERGY_REBCC = -147.675973450322
Expand Down

0 comments on commit 6cbcc8c

Please sign in to comment.