diff options
author | Matt Clay <matt@mystile.com> | 2019-02-26 22:34:55 +0100 |
---|---|---|
committer | Matt Clay <matt@mystile.com> | 2019-02-27 05:47:17 +0100 |
commit | 861446b2a62fabf55331e7314e9afe8c107358c6 (patch) | |
tree | e9016f67e57472b523b03b950982798b9d6efbfe | |
parent | Ecs service add features (#50059) (diff) | |
download | ansible-861446b2a62fabf55331e7314e9afe8c107358c6.tar.xz ansible-861446b2a62fabf55331e7314e9afe8c107358c6.zip |
Run network tests when paramiko plugin changes.
-rw-r--r-- | test/runner/lib/classification.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/runner/lib/classification.py b/test/runner/lib/classification.py index f80e1c6e52..bc9671074c 100644 --- a/test/runner/lib/classification.py +++ b/test/runner/lib/classification.py @@ -495,6 +495,13 @@ class PathMapper(object): 'units': units_path, } + if name == 'paramiko_ssh': + return { + 'integration': integration_name, + 'network-integration': self.integration_all_target, + 'units': units_path, + } + # other connection plugins have isolated integration and unit tests return { |