Skip to content
Merged
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
12 changes: 10 additions & 2 deletions tests/auto_inject/test_auto_inject_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,10 @@ def test_no_world_writeable(self):
@scenarios.multi_installer_auto_injection
class TestSimpleInstallerAutoInjectManual(base.AutoInjectBaseTest):
@irrelevant(context.library < "python@3.0.0", reason="Avoid blocking 2.21 release pipeline")
@irrelevant(
context.library > "python@2.21.0" and context.installed_language_runtime < "3.9.0",
reason="python 3.8 is not supported on ddtrace >= 3.x",
)
def test_install(self):
virtual_machine = context.virtual_machine
logger.info(
Expand Down Expand Up @@ -254,8 +258,8 @@ class TestSimpleInstallerAutoInjectManualOriginDetection(base.AutoInjectBaseTest
reason="Origin detection is not supported on host environments",
)
@irrelevant(
context.library > "python@2.21.0" and context.installed_language_runtime < "3.8.0",
reason="python 3.7 is not supported on ddtrace >= 3.x",
context.library > "python@2.21.0" and context.installed_language_runtime < "3.9.0",
reason="python 3.8 is not supported on ddtrace >= 3.x",
)
def test_origin_detection(self):
virtual_machine = context.virtual_machine
Expand All @@ -271,6 +275,10 @@ def test_origin_detection(self):
@features.auto_instrumentation_appsec
@scenarios.simple_auto_injection_appsec
class TestSimpleInstallerAutoInjectManualAppsec(base.AutoInjectBaseTest):
@irrelevant(
context.library > "python@2.21.0" and context.installed_language_runtime < "3.9.0",
reason="python 3.8 is not supported on ddtrace >= 3.x",
)
def test_appsec(self):
logger.info(f"Launching test_appsec for : [{context.vm_name}]...")
self._test_install(context.virtual_machine, appsec=True)
Expand Down
10 changes: 4 additions & 6 deletions utils/scripts/ci_orchestrators/k8s_ssi.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
"dd-lib-python-init-test-django-gunicorn",
"dd-lib-python-init-test-django-gunicorn-alpine",
"dd-lib-python-init-test-django-unsupported-package-force",
"dd-lib-python-init-test-django-uvicorn",
"dd-lib-python-init-test-protobuf-old"
"dd-lib-python-init-test-django-uvicorn"
],
"ruby": [
"dd-lib-ruby-init-test-rails",
Expand Down Expand Up @@ -79,8 +78,7 @@
"dd-lib-python-init-test-django-gunicorn",
"dd-lib-python-init-test-django-gunicorn-alpine",
"dd-lib-python-init-test-django-unsupported-package-force",
"dd-lib-python-init-test-django-uvicorn",
"dd-lib-python-init-test-protobuf-old"
"dd-lib-python-init-test-django-uvicorn"
],
"ruby": [
"dd-lib-ruby-init-test-rails",
Expand All @@ -93,10 +91,10 @@
}
]
}

],
"cluster_agent_spec": {
"latest": "235494822917.dkr.ecr.us-east-1.amazonaws.com/ssi/cluster-agent:latest",
"old_injection": "235494822917.dkr.ecr.us-east-1.amazonaws.com/ssi/cluster-agent:7.56.2"
}
}
}
Loading