Skip to content

Commit 124ba4d

Browse files
dependabot[bot]mdellweg
authored andcommitted
[PIP] Update pulp-cli requirement from <0.33,>=0.23.2 to >=0.23.2,<0.34
Updates the requirements on [pulp-cli](https://github.com/pulp/pulp-cli) to permit the latest version. - [Changelog](https://github.com/pulp/pulp-cli/blob/0.33.0/CHANGES.md) - [Commits](pulp/pulp-cli@0.23.2...0.33.0) --- updated-dependencies: - dependency-name: pulp-cli dependency-version: 0.33.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> [PIP] Update pulp-glue requirement in /pulp-glue-deb Updates the requirements on [pulp-glue](https://github.com/pulp/pulp-cli) to permit the latest version. - [Changelog](https://github.com/pulp/pulp-cli/blob/0.33.0/CHANGES.md) - [Commits](pulp/pulp-cli@0.23.2...0.33.0) --- updated-dependencies: - dependency-name: pulp-glue dependency-version: 0.33.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9295f75 commit 124ba4d

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

pulp-glue-deb/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers = [
2323
"Typing :: Typed",
2424
]
2525
dependencies = [
26-
"pulp-glue>=0.23.2,<0.33",
26+
"pulp-glue>=0.23.2,<0.34",
2727
]
2828

2929
[project.urls]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ classifiers=[
2323
"Typing :: Typed",
2424
]
2525
dependencies = [
26-
"pulp-cli>=0.23.2,<0.33",
26+
"pulp-cli>=0.23.2,<0.34",
2727
"pulp-glue-deb==0.3.0.dev",
2828
]
2929

tests/scripts/pulp_deb/test_deb_remote.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ expect_succ pulp deb remote update --name "${ENTITIES_NAME}" --distribution "bar
4444
expect_succ pulp deb remote show --name "${ENTITIES_NAME}"
4545
assert "$(echo "$OUTPUT" | jq -r .distributions)" == "bar"
4646
expect_fail pulp deb remote update --name "${ENTITIES_NAME}" --distribution ""
47-
assert "${ERROUTPUT}" == 'Error: Must have at least one distribution for remote.'
47+
assert "${ERROUTPUT}" =~ 'Error: Must have at least one distribution for remote.'
4848

4949
# Try some possible modifications of the remote's components:
5050
expect_succ pulp deb remote update --name "${ENTITIES_NAME}" --component "bar"

tests/test_help_pages.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ def test_access_help(no_api: None, subtests: SubTests) -> None:
5151
result = runner.invoke(main, args + ["--help"], catch_exceptions=False)
5252

5353
if result.exit_code == 2:
54-
assert "not available in this context" in result.stdout
54+
assert (
55+
"not available in this context" in result.stdout
56+
or "not available in this context" in result.stderr
57+
)
5558
else:
5659
assert result.exit_code == 0
5760
assert result.stdout.startswith("Usage:") or result.stdout.startswith(

0 commit comments

Comments
 (0)