Skip to content

Commit

Permalink
Clean storage before test_base_data_nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz committed Nov 21, 2024
1 parent 115e041 commit 7bb6476
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/tools/archive/test_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


@pytest.mark.parametrize('entities', ['all', 'specific'])
def test_base_data_nodes(aiida_profile, tmp_path, entities):
def test_base_data_nodes(aiida_profile_clean, tmp_path, entities):
"""Test ex-/import of Base Data nodes"""
# producing values for each base type
values = ('Hello', 6, -1.2399834e12, False)
Expand All @@ -45,7 +45,7 @@ def test_base_data_nodes(aiida_profile, tmp_path, entities):
# actually export now
create(filename=filename)
# cleaning:
aiida_profile.reset_storage()
aiida_profile_clean.reset_storage()
# Importing back the data:
import_archive(filename)
# Checking whether values are preserved:
Expand Down

0 comments on commit 7bb6476

Please sign in to comment.