Commit f109b818 by Toshio Kuratomi

Disable pip test on FIPS enabled systems because pip unconditionally uses md5

parent b828b257
......@@ -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 }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment