Skip to content

Commit

Permalink
improve: fixture module -> package
Browse files Browse the repository at this point in the history
  • Loading branch information
MehmedGIT committed Sep 29, 2023
1 parent e71bfc7 commit 0c3d4c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/fixtures/hpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
)


@fixture(scope="module", name="hpc_data_transfer")
@fixture(scope="package", name="hpc_data_transfer")
def fixture_hpc_transfer_connector():
assert_exists_file(OPERANDI_HPC_SSH_KEYPATH)
try:
Expand All @@ -30,7 +30,7 @@ def fixture_hpc_transfer_connector():
yield hpc_transfer_connector


@fixture(scope="module", name="hpc_command_executor")
@fixture(scope="package", name="hpc_command_executor")
def fixture_hpc_execution_connector():
assert_exists_file(OPERANDI_HPC_SSH_KEYPATH)
try:
Expand Down

0 comments on commit 0c3d4c7

Please sign in to comment.