Skip to content

Commit

Permalink
test e2e with docker build of Agent with py 3.12.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle-Neale committed Sep 20, 2024
1 parent 8da9ca8 commit 96db352
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datadog_checks_dev/datadog_checks/dev/tooling/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
'integrations-internal-core': os.path.join('~', 'dd', 'integrations-internal-core'),
},
'agents': {
'master': {'docker': 'datadog/agent-dev:master', 'local': 'latest'},
'master': {'docker': 'datadog/agent-dev:kyleneale-bump-python-312-py3', 'local': 'latest'},
'7': {'docker': 'datadog/agent:7', 'local': '7'},
'6': {'docker': 'datadog/agent:6', 'local': '6'},
},
Expand Down
2 changes: 1 addition & 1 deletion ddev/src/ddev/config/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def agents(self):
self._field_agents = agents
else:
self._field_agents = self.raw_data['agents'] = {
'dev': {'docker': 'datadog/agent-dev:master', 'local': 'latest'},
'dev': {'docker': 'datadog/agent-dev:kyleneale-bump-python-312-py3', 'local': 'latest'},
'7': {'docker': 'datadog/agent:7', 'local': '7'},
}

Expand Down
2 changes: 1 addition & 1 deletion ddev/src/ddev/e2e/agent/docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def start(self, *, agent_build: str, local_packages: dict[Path, str], env_vars:
from ddev.e2e.agent.constants import AgentEnvVars

if not agent_build:
agent_build = 'datadog/agent-dev:master'
agent_build = 'datadog/agent-dev:kyleneale-bump-python-312-py3'

if agent_build.startswith("datadog/"):
# Add a potentially missing `py` suffix for default non-RC builds
Expand Down

0 comments on commit 96db352

Please sign in to comment.