summaryrefslogtreecommitdiff
path: root/test/integration/targets/apt/tasks/upgrade_scenarios.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/apt/tasks/upgrade_scenarios.yml')
-rw-r--r--test/integration/targets/apt/tasks/upgrade_scenarios.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/integration/targets/apt/tasks/upgrade_scenarios.yml b/test/integration/targets/apt/tasks/upgrade_scenarios.yml
deleted file mode 100644
index a8bf76b3..00000000
--- a/test/integration/targets/apt/tasks/upgrade_scenarios.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-# See https://github.com/ansible/ansible/issues/77868
-# fail_on_autoremove is not valid parameter for aptitude
-- name: Use fail_on_autoremove using aptitude
- apt:
- upgrade: yes
- fail_on_autoremove: yes
- register: fail_on_autoremove_result
-
-- name: Check if fail_on_autoremove does not fail with aptitude
- assert:
- that:
- - not fail_on_autoremove_result.failed
-
-# See https://github.com/ansible/ansible/issues/77868
-# allow_downgrade is not valid parameter for aptitude
-- name: Use allow_downgrade using aptitude
- apt:
- upgrade: yes
- allow_downgrade: yes
- register: allow_downgrade_result
-
-- name: Check if allow_downgrade does not fail with aptitude
- assert:
- that:
- - not allow_downgrade_result.failed