Skip to content

Commit

Permalink
only one worker for now
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Nov 5, 2024
1 parent 66dcbd7 commit 80ee1de
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/pulp_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ def test_pulp_content_service(host):
assert pulp_content.is_enabled

def test_pulp_worker_services(host):
for i in range(1, 3):
pulp_worker = host.service(f"pulp-worker@{i}")
assert pulp_worker.is_running
assert pulp_worker.is_enabled
pulp_worker = host.service("pulp-worker")
assert pulp_worker.is_running
assert pulp_worker.is_enabled

def test_pulp_api_port(host):
pulp_api = host.addr(PULP_HOST)
Expand Down

0 comments on commit 80ee1de

Please sign in to comment.