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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__pycache__/
build/
tests/cli.toml
pytest_pulp_cli/GPG-PRIVATE-KEY-fixture-signing
GPG-PRIVATE-KEY-fixture-signing
site/
dist/
*.po~
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ lint:
ruff check --diff
.ci/scripts/check_cli_dependencies.py
.ci/scripts/check_click_for_mypy.py
MYPYPATH=pulp-glue-gem mypy
mypy
cd pulp-glue-gem; mypy
@echo "🙊 Code 🙈 LGTM 🙉 !"

Expand Down
1 change: 1 addition & 0 deletions pulp-glue-gem/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ strict = true
warn_unused_ignores = false
show_error_codes = true
files = "pulp_glue/**/*.py, tests/**/*.py"
mypy_path = ["."]
namespace_packages = true
explicit_package_bases = true

Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ namespaces = true
# This section is co-managed by the cookiecutter templates.
# Changes to existing keys should be preserved.
app_label = "gem"
src_layout = false
repository = "https://github.com/pulp/pulp-cli-gem"
glue = true
docs = false
Expand Down Expand Up @@ -122,6 +123,7 @@ strict = true
warn_unused_ignores = false
show_error_codes = true
files = "pulpcore/**/*.py, tests/*.py"
mypy_path = [".", "pulp-glue-gem"]
namespace_packages = true
explicit_package_bases = true

Expand Down Expand Up @@ -199,4 +201,3 @@ extend-select = ["I"]
sections = { second-party = ["pulp_glue"] }
section-order = ["future", "standard-library", "third-party", "second-party", "first-party", "local-folder"]


2 changes: 1 addition & 1 deletion tests/scripts/config.source
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ expect_deny () {
cat log.err >&3
false
else
if grep -q "You do not have permission" log.err
if grep -q "Operation .* not authorized." log.err
then
echo "SUCCESS [! $@]" >&3
OUTPUT="$(cat log.out)"
Expand Down
Loading