Skip to content

Commit

Permalink
Merge 4671fb2 into b8c241b
Browse files Browse the repository at this point in the history
  • Loading branch information
robinzyb committed Apr 13, 2024
2 parents b8c241b + 4671fb2 commit 640b9b7
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion cp2kdata/utils.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"""
this script put misc function here.
"""
from turtle import pos
from ase.geometry.analysis import Analysis
from ase.io import read, write
#from cp2kdata import Cp2kOutput
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Cp2kData"
version = "0.6.7"
version = "0.6.8"
description = "A Small Package to Postprocess Cp2k Output"
authors = [
{name = "Yongbin Zhuang", email = "robinzhuang@outlook.com"}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_dpdata/test_labeledsys.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
)

# test case
@pytest.fixture(params=test_params, scope='class')
@pytest.fixture(params=test_params, scope='class', ids=e_f_output_path_list+aimd_output_path_list)
def cp2k_and_ref(request):
return request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/test_dpdata/test_labeledsys_nocon.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
) for path in e_f_output_path_list
]

@pytest.fixture(params=e_f_dpdata_list, scope='class')
@pytest.fixture(params=e_f_dpdata_list, scope='class', ids=e_f_output_path_list)
def cp2k_and_ref(request):
return request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/test_energy_force/test_energy_force.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def json_to_dict(json_file):
energy_force_output_path_list))


@pytest.fixture(params=test_params, scope='class')
@pytest.fixture(params=test_params, scope='class', ids=energy_force_output_path_list)
def output_and_answer_path(request):
return request.param

Expand Down
2 changes: 1 addition & 1 deletion tests/test_pdos/test_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

test_params = list(zip(parsed_values, test_answer))

@pytest.fixture(params=test_params, scope='class')
@pytest.fixture(params=test_params, scope='class', ids=pdos_file_list)
def output_and_answer(request):
return request.param

Expand Down

0 comments on commit 640b9b7

Please sign in to comment.