Skip to content

Commit

Permalink
Install requirements on all installs (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Feb 16, 2021
1 parent 6fb6112 commit 230b8ea
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/tox_ansible/ansible/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,15 @@ def tox_cases(self):
# TODO(ssbarnea): Detect and enable only those tests that do exist
# to avoid confusing tox user.
ANSIBLE_TEST_COMMANDS: Dict[str, Dict[str, Any]] = {
# "coverage",
"integration": {},
"network-integration": {},
"integration": {"args": ["--requirements"]},
"network-integration": {"args": ["--requirements"]},
"sanity": {"args": ["--requirements"]},
"shell": {},
"units": {},
"windows-integration": {},
"shell": {"args": ["--requirements"]},
"units": {"args": ["--requirements"]},
"windows-integration": {"args": ["--requirements"]},
# special commands (not supported by us yet)
"coverage": {},
"env": {},
}

# Append posargs if any to each command
Expand Down

0 comments on commit 230b8ea

Please sign in to comment.