Skip to content

Commit

Permalink
no pmg version, lint, remove circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
lbluque committed Apr 26, 2024
1 parent 4b43193 commit dd7704e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 73 deletions.
70 changes: 0 additions & 70 deletions .circleci/config.yml

This file was deleted.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = [
"scipy",
"numpy",
"ase==3.22.1",
"pymatgen==2023.5.10",
"pymatgen",
"tqdm"
]

Expand Down
8 changes: 6 additions & 2 deletions tests/test_bulk.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@ def test_unique_slab_enumeration(self):

# pymatgen bug see https://github.com/materialsproject/pymatgen/issues/3747
if len(slabs) == 15:
pytest.xfail(f"Number of generated slabs {len(slabs)} is off due to pymatgen bug!")
pytest.xfail(
f"Number of generated slabs {len(slabs)} is off due to pymatgen bug!"
)
assert len(slabs) == 14

with open(self.precomputed_path, "wb") as f:
Expand All @@ -90,7 +92,9 @@ def test_precomputed_slab(self):
)

if len(precomputed_slabs) == 15:
pytest.xfail(f"Number of generated slabs {len(precomputed_slabs)} is off due to pymatgen bug!")
pytest.xfail(
f"Number of generated slabs {len(precomputed_slabs)} is off due to pymatgen bug!"
)

assert len(precomputed_slabs) == 14

Expand Down

0 comments on commit dd7704e

Please sign in to comment.