Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Providing support for atomistic StructureData #6632

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 13, 2024
commit ebf1f4f64bc97ee2df9388bc5bba63383fe4b409
2 changes: 1 addition & 1 deletion tests/orm/nodes/data/test_kpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

import numpy as np
import pytest

from aiida.orm import KpointsData, load_node
from aiida.orm import StructureData as LegacyStructureData
from aiida.orm.nodes.data.structure import has_atomistic


skip_atomistic = pytest.mark.skipif(not has_atomistic(), reason='aiida-atomistic not installed')

if not has_atomistic():
Expand Down
Loading