Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test #901

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft

Test #901

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .packit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,12 @@ jobs:
tf_extra_params:
test:
tmt:
test_filter: tag:testing-farm-container & tier:0
test_filter: tag:user-test-only & tier:0
labels:
- standard
env:
INSTALL_DEPS: "yes"
LOG_LEVEL: "DEBUG"
targets:
# Run integration tests on Fedora using CS9 containers, because running integrations tests on CS9 using CS9
# containers is very flaky
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/tier0/bluechi-agent-user-bus/main.fmf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
summary: Test agent connecting to user bus
id: 6886e7c8-7548-4cf7-8dd4-d2d46b125fd3
tag: [multihost]
tag: [user-test-only, multihost]
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class TestAgentStartAsUser(unittest.TestCase):

def test_agent_start_as_user(self):
result, _, _ = run_command("systemctl --user start bluechi-agent")
result, output, _ = run_command("systemctl --user start bluechi-agent")
assert result == 0

with Timeout(5, "Timeout waiting for agent to connect to user bus"):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ def test_monitor_node_disconnect(
):
node_foo_cfg = bluechi_node_default_config.deep_copy()
node_foo_cfg.node_name = NODE_FOO
node_foo_cfg.log_level = "DEBUG"

bluechi_test.add_bluechi_agent_config(node_foo_cfg)

Expand Down