Skip to content
This repository was archived by the owner on Jan 5, 2023. It is now read-only.

Commit 4b6e677

Browse files
authored
Assure ansible has docker_container module installed (#26)
We need ansible with docker module for using this module.
1 parent 4c3aac2 commit 4b6e677

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/tox.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040

4141
steps:
4242
- uses: actions/checkout@v1
43+
- name: Install system dependencies
44+
run: |
45+
sudo apt-get update \
46+
&& sudo apt-get install -y ansible \
47+
&& ansible-doc -l | grep docker_container
4348
- name: Find python version
4449
id: py_ver
4550
shell: python

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ setenv =
3737
MOLECULE_NO_LOG=0
3838
deps =
3939
devel: ansible>=2.10.0a2,<2.11
40-
py{36,37,38}: molecule[test]
41-
py{36,37,38}-{devel}: git+https://github.com/ansible-community/molecule.git@master#egg=molecule[test]
40+
py{36,37,38,39}: molecule[test]
41+
py{36,37,38,39}-{devel}: git+https://github.com/ansible-community/molecule.git@master#egg=molecule[test]
4242
dockerfile: ansible>=2.9.12
4343
selinux
4444
extras =

0 commit comments

Comments
 (0)