Skip to content

Commit

Permalink
Update DefectThermodynamics paths in FermiSolver tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kavanase committed Jul 12, 2024
1 parent ba1519f commit 8d7723a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_interface_fermi_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class FermiSolverTestCase(unittest.TestCase):
def setUp(self):
self.thermo_path = "../examples/CdTe/CdTe_LZ_thermo_wout_meta.json"
self.thermo_path = "../examples/CdTe/CdTe_LZ_thermo_wout_meta.json.gz"
self.bulk_dos_path = "../examples/CdTe/CdTe_prim_k181818_NKRED_2_vasprun.xml.gz"
self.thermo = loadfn(self.thermo_path)
self.fs = FermiSolver(self.thermo, self.bulk_dos_path)
Expand Down Expand Up @@ -89,7 +89,7 @@ def test_get_interpolated_chempots(self):

class FermiSolverDopedTestCase(unittest.TestCase):
def setUp(self):
self.thermo_path = "../examples/CdTe/CdTe_LZ_thermo_wout_meta.json"
self.thermo_path = "../examples/CdTe/CdTe_LZ_thermo_wout_meta.json.gz"
self.bulk_dos_path = "../examples/CdTe/CdTe_prim_k181818_NKRED_2_vasprun.xml.gz"
self.thermo = loadfn(self.thermo_path)
self.fs = FermiSolverDoped(self.thermo, self.bulk_dos_path)
Expand Down Expand Up @@ -153,7 +153,7 @@ def test_pseudo_equilibrium_solve(self):

class FermiSolverPyScFermiTestCase(unittest.TestCase):
def setUp(self):
self.thermo_path = "../examples/CdTe/CdTe_LZ_thermo_wout_meta.json"
self.thermo_path = "../examples/CdTe/CdTe_LZ_thermo_wout_meta.json.gz"
self.bulk_dos_path = "../examples/CdTe/CdTe_prim_k181818_NKRED_2_vasprun.xml.gz"
self.thermo = loadfn(self.thermo_path)
self.fs = FermiSolverPyScFermi(self.thermo, self.bulk_dos_path, multiplicity_scaling=32)
Expand Down

0 comments on commit 8d7723a

Please sign in to comment.