Skip to content

Commit

Permalink
Re-enable skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Feb 9, 2024
1 parent d4ca969 commit 1d54b9d
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion matminer/featurizers/site/tests/test_rdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def test_grdf(self):
[f"Gaussian center={i} width=1.0" for i in np.arange(10.0)],
)

@unittest.skip("Test does not pass with latest deps")
def test_afs(self):
f1 = Gaussian(1, 0)
f2 = Gaussian(1, 1)
Expand Down
1 change: 0 additions & 1 deletion matminer/featurizers/structure/tests/test_bonding.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ def test_bondfractions(self):
np.testing.assert_array_equal(df["Al - Al bond frac."].to_numpy(), [0.0, 0.0])
np.testing.assert_array_equal(df["Ni - Ni bond frac."].to_numpy(), [0.0, 0.5])

@unittest.skip("Test does not pass with latest deps")
def test_bob(self):
# Test a single fit and featurization
scm = SineCoulombMatrix(flatten=False)
Expand Down
1 change: 0 additions & 1 deletion matminer/featurizers/structure/tests/test_sites.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@


class StructureSitesFeaturesTest(StructureFeaturesTest):
@unittest.skip("Test does not pass with latest deps")
def test_sitestatsfingerprint(self):
# Test matrix.
op_struct_fp = SiteStatsFingerprint.from_preset("OPSiteFingerprint", stats=None)
Expand Down
1 change: 0 additions & 1 deletion matminer/featurizers/utils/tests/test_grdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def test_gaussian(self):
self.assertIn("width=4", name)
self.assertIn("center=4", name)

@unittest.skip("Test does not pass with latest deps")
def test_histogram(self):
h = Histogram(1, 4)
np.testing.assert_array_almost_equal([0, 1, 0], h([0.5, 2, 5]))
Expand Down

0 comments on commit 1d54b9d

Please sign in to comment.