chore: use the correct molecule driver package

This commit is contained in:
Chris Hawk 2023-11-10 14:23:27 -08:00
parent f1fe6f9145
commit d13c4d6b0f
3 changed files with 4 additions and 4 deletions

View file

@ -47,7 +47,7 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io sudo apt-get install -y docker-ce docker-ce-cli containerd.io
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install molecule[docker] yamllint ansible ansible-lint docker pip install molecule-plugins[docker] yamllint ansible ansible-lint docker
- name: Run role test - name: Run role test
run: >- run: >-

View file

@ -42,7 +42,7 @@ jobs:
sudo apt-get update sudo apt-get update
sudo apt-get install -y docker-ce docker-ce-cli containerd.io sudo apt-get install -y docker-ce docker-ce-cli containerd.io
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install molecule[docker] yamllint ansible ansible-lint docker pip install molecule-plugins[docker] yamllint ansible ansible-lint docker
- name: Run role test - name: Run role test
run: >- run: >-

View file

@ -124,10 +124,10 @@ Run `ansible-test integration`. Currently some tests are disabled as [test are b
### Prequisites for role tests ### Prequisites for role tests
If you would like to use podman, you must If you would like to use podman, you must
install the `molecule[podman]` package in PyPI: install the `molecule-plugins[podman]` package in PyPI:
``` ```
pip install --upgrade molecule[podman] pip install --upgrade molecule-plugins[podman]
``` ```
### Running role tests ### Running role tests