summaryrefslogtreecommitdiffstats
path: root/awx_collection
diff options
context:
space:
mode:
authorGabe Muniz <gmuniz@redhat.com>2023-02-17 20:17:18 +0100
committerGabe Muniz <gmuniz@redhat.com>2023-02-17 20:57:54 +0100
commitfb2647ff7bfcf29a60f1cb439c8aa10b19cb6da6 (patch)
treef84199568abed5c101c2031aa5046842a28bab70 /awx_collection
parentMerge pull request #13466 from john-westcott-iv/ee_debugging (diff)
downloadawx-fb2647ff7bfcf29a60f1cb439c8aa10b19cb6da6.tar.xz
awx-fb2647ff7bfcf29a60f1cb439c8aa10b19cb6da6.zip
changing the signature of workflowapprovallist
included workflow approval as a read only endpoint to pass collection tests
Diffstat (limited to 'awx_collection')
-rw-r--r--awx_collection/test/awx/test_completeness.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/awx_collection/test/awx/test_completeness.py b/awx_collection/test/awx/test_completeness.py
index 43e225e4b8..451c1a61d3 100644
--- a/awx_collection/test/awx/test_completeness.py
+++ b/awx_collection/test/awx/test_completeness.py
@@ -16,7 +16,7 @@ import glob
# Normally a read-only endpoint should not have a module (i.e. /api/v2/me) but sometimes we reuse a name
# For example, we have a role module but /api/v2/roles is a read only endpoint.
# This list indicates which read-only endpoints have associated modules with them.
-read_only_endpoints_with_modules = ['settings', 'role', 'project_update']
+read_only_endpoints_with_modules = ['settings', 'role', 'project_update', 'workflow_approval']
# If a module should not be created for an endpoint and the endpoint is not read-only add it here
# THINK HARD ABOUT DOING THIS