summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToshio Kuratomi <toshio@fedoraproject.org>2014-11-12 11:45:39 -0800
committerToshio Kuratomi <toshio@fedoraproject.org>2014-11-12 11:45:39 -0800
commitf109b818bf57a3fbf99dc03bf7b8adc262c0d4e8 (patch)
tree0a816639d3663a1e6cbce565ed86d1d7757976d0
parentb828b2578462610bd3d29974f19e4f3235fb46ce (diff)
downloadansible-f109b818bf57a3fbf99dc03bf7b8adc262c0d4e8.tar.gz
Disable pip test on FIPS enabled systems because pip unconditionally uses md5
-rw-r--r--test/integration/destructive.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/integration/destructive.yml b/test/integration/destructive.yml
index d341c4916b..bb76bf3026 100644
--- a/test/integration/destructive.yml
+++ b/test/integration/destructive.yml
@@ -2,7 +2,9 @@
gather_facts: True
roles:
- { role: test_service, tags: test_service }
- - { role: test_pip, tags: test_pip }
+ # Current pip unconditionally uses md5. We can re-enable if pip switches
+ # to a different hash or allows us to not check md5
+ - { role: test_pip, tags: test_pip, when: ansible_fips != True }
- { role: test_gem, tags: test_gem }
- { role: test_yum, tags: test_yum }
- { role: test_apt, tags: test_apt }