Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use a more recent version of ansible-core in testing. #2147

Merged
merged 2 commits into from
May 22, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,8 @@ def test_role_import_exceptions(ansible_config):
check_retcode=False
)

# core always exits zero...
# https://github.com/ansible/ansible/issues/82175
assert import_pid.returncode == 0
# should have exited non-zero ...
assert import_pid.returncode == 1

stdout = import_pid.stdout.decode('utf-8')
assert 'Traceback (most recent call last):' in stdout
Expand Down
2 changes: 1 addition & 1 deletion integration_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
epdb
requests
# pulp requires compatibility with python 3.8
ansible-core<2.13.0
ansible-core<2.17.0
pytest
orionutils
openapi-spec-validator
Expand Down
Loading