Skip to content
This repository has been archived by the owner on Jan 30, 2024. It is now read-only.

Commit

Permalink
Problem: pulp_installer molecule CI fails with python-sh 1.13.1
Browse files Browse the repository at this point in the history
Solution: Keep it on 1.12.x for python 2, since both 1.13.0 & 1.13.1
seem to be incompatible with python 2, despite what the project's
homepage says.

fixes: #6587
  • Loading branch information
mikedep333 committed Apr 29, 2020
1 parent 126a739 commit 7900b06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tox.ini
Expand Up @@ -12,7 +12,8 @@ deps =
docker
molecule
molecule-inspec
sh != 1.13.0
# molecule dep that is incompatible with python 2 as of 1.13.0 & 1.13.1
sh < 1.13 ; python_version < "3"
passenv = TEST_TYPE
# For reference on the commands, see:
# `molecule matrix test`
Expand Down

0 comments on commit 7900b06

Please sign in to comment.