Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bastonero committed Feb 11, 2024
1 parent d6f5696 commit b264936
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,12 @@ def _generate_inputs_ph(with_output_structure=False):

from aiida_quantumespresso.utils.resources import get_default_options

pw_node = generate_calc_job_node(inputs={'parameters': Dict(), 'structure': generate_structure()})
pw_node = generate_calc_job_node(
entry_point_name='quantumespresso.pw', inputs={
'parameters': Dict(),
'structure': generate_structure()
}
)
remote_folder = RemoteData(computer=fixture_localhost, remote_path='/tmp')
remote_folder.base.links.add_incoming(pw_node, link_type=LinkType.CREATE, link_label='remote_folder')
remote_folder.store()
Expand Down

0 comments on commit b264936

Please sign in to comment.