Skip to content

Commit

Permalink
Bump the minimum supported version of datadog-checks-dev (#16006)
Browse files Browse the repository at this point in the history
* Bump the minimum supported version of datadog-checks-dev

* fix...
  • Loading branch information
ofek authored Oct 12, 2023
1 parent 4c331ca commit 5ee75fd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions ddev/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
***Added***:

* Migrate E2E features ([#15931](https://github.com/DataDog/integrations-core/pull/15931))
* Bump the minimum supported version of datadog-checks-dev ([#16006](https://github.com/DataDog/integrations-core/pull/16006))

## 5.1.1 / 2023-09-29

Expand Down
2 changes: 1 addition & 1 deletion ddev/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
dependencies = [
"click~=8.1.6",
"coverage",
"datadog-checks-dev[cli]>=25.1.2,<26",
"datadog-checks-dev[cli]~=27.0",
"hatch>=1.6.3",
"httpx",
"jsonpointer",
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 @@ -162,7 +162,7 @@ def start(self, *, agent_build: str, local_packages: dict[Path, str], env_vars:
remaining = ':'.join(parts[2:])
volumes[i] = f'/{vm_file}:{remaining}'

if not os.getenv('DDEV_E2E_DOCKER_NO_PULL') != '1':
if os.getenv('DDEV_E2E_DOCKER_NO_PULL') != '1':
process = self._run_command(['docker', 'pull', agent_build])
if process.returncode:
raise RuntimeError(f'Could not pull image {agent_build}')
Expand Down

0 comments on commit 5ee75fd

Please sign in to comment.