Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
javierdelapuente committed Jan 30, 2025
1 parent 097c98d commit 8a59b7b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/integration/test_charm_fork_path_change.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async def test_path_config_change(
runner_names = await instance_helper.get_runner_names(unit)
logger.info("runners: %s", runner_names)
assert len(runner_names) == 1
#this will crash if there is not exactly one
# this will crash if there is not exactly one
logger.info("runner info: %s", instance_helper._get_single_runner(unit))

runner_name = runner_names[0]
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test_runner_manager_openstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@
RunnerManagerConfig,
)
from github_runner_manager.metrics import events
from github_runner_manager.openstack_cloud import health_checks
from github_runner_manager.openstack_cloud import constants
from github_runner_manager.openstack_cloud import constants, health_checks
from github_runner_manager.openstack_cloud.openstack_runner_manager import (
OpenStackCredentials,
OpenStackRunnerManager,
Expand All @@ -53,6 +52,7 @@
logger = logging.getLogger(__name__)
constants.CREATE_SERVER_TIMEOUT = 900


@pytest.fixture(scope="module", name="runner_label")
def runner_label():
return f"test-{token_hex(6)}"
Expand Down

0 comments on commit 8a59b7b

Please sign in to comment.