-
Notifications
You must be signed in to change notification settings - Fork 14
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
OnBoarding: de-parametrize #3960
OnBoarding: de-parametrize #3960
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
plus naming
tests/docker_ssi/test_docker_ssi.py
Outdated
@@ -52,7 +52,7 @@ def setup_install_weblog_running(self): | |||
|
|||
@features.ssi_guardrails | |||
@bug( | |||
condition="centos-7" in context.scenario.weblog_variant and context.scenario.library.library == "java", | |||
condition="centos-7" in context.weblog_variant and context.scenario.library.library == "java", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be working in theory:
condition="centos-7" in context.weblog_variant and context.scenario.library.library == "java", | |
condition="centos-7" in context.weblog_variant and context.library == "java", |
@@ -19,6 +19,7 @@ | |||
|
|||
import socket | |||
import time | |||
from utils.tools import logger | |||
|
|||
|
|||
def wait_for_port(port: int, host: str = "localhost", timeout: float = 5.0): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probaly a better name : wait_for_accepting_connection
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for the next pr
4638612
to
897ca43
Compare
Co-authored-by: Charles de Beauchesne <[email protected]>
Motivation
we no longer run multiple virtual machines by scenario. We don't need parametrize the tests. The current VM data is stored in the scenario.
Changes
Workflow
codeowners
file quickly.🚀 Once your PR is reviewed, you can merge it!
🛟 #apm-shared-testing 🛟
Reviewer checklist
[<language>]
, double-check that only<language>
is impacted by the changebuild-XXX-image
label is present