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

Commit

Permalink
Restrict molecule version to <3.3.0 (#396)
Browse files Browse the repository at this point in the history
The 3.3.0 version of molecule broke the test suite. Restricting the
version until we can either fix upstream or decide on the best
workaround.
  • Loading branch information
gravesm authored Mar 25, 2021
1 parent 5fc3dd0 commit 34e6e09
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,10 @@ jobs:
with:
python-version: ${{ matrix.python_version }}

# The 3.3.0 release of molecule introduced a breaking change. See
# https://github.com/ansible-community/molecule/issues/3083
- name: Install molecule and openshift dependencies
run: pip install ansible molecule yamllint openshift flake8
run: pip install ansible "molecule<3.3.0" yamllint openshift flake8

# The latest release doesn't work with Molecule currently.
# See: https://github.com/ansible-community/molecule/issues/2757
Expand Down Expand Up @@ -177,7 +179,7 @@ jobs:
python-version: ${{ matrix.python_version }}

- name: Install molecule and openshift dependencies
run: pip install "ansible>=2.9.0,<2.10.0" molecule yamllint openshift flake8
run: pip install "ansible>=2.9.0,<2.10.0" "molecule<3.3.0" yamllint openshift flake8

- name: Create default collection path symlink
run: |
Expand Down

0 comments on commit 34e6e09

Please sign in to comment.