From f070a604220a65ae7d64f35872b7a3d761033cb2 Mon Sep 17 00:00:00 2001 From: ishanjainn Date: Mon, 18 Sep 2023 14:33:50 +0530 Subject: [PATCH] lint --- .github/workflows/modules-test.yml | 42 +++++++++--------------------- 1 file changed, 12 insertions(+), 30 deletions(-) diff --git a/.github/workflows/modules-test.yml b/.github/workflows/modules-test.yml index 82e7f90b..070aa02c 100644 --- a/.github/workflows/modules-test.yml +++ b/.github/workflows/modules-test.yml @@ -85,34 +85,16 @@ jobs: - name: Install Requests run: pip install requests - - name: Test module alert_contact_point - run: ansible-test integration -v alert_contact_point alert_notification_policy --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker - working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - - - name: Test module alert_notification_policy - run: ansible-test integration -v alert_notification_policy --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker - working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - - - name: Test module cloud_api_key - run: ansible-test integration -v cloud_api_key --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker - working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - - - name: Test module cloud_plugin - run: ansible-test integration -v cloud_plugin --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker - working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - - - name: Test module cloud_stack - run: ansible-test integration -v cloud_stack --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker - working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - - - name: Test module dashboard - run: ansible-test integration -v dashboard --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker - working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - - - name: Test module datasource - run: ansible-test integration -v datasource --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker - working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} - - - name: Test module folder - run: ansible-test integration -v folder --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker + - name: Test Modules + run: | + ansible-test integration -v \ + alert_contact_point \ + alert_notification_policy \ + cloud_api_key \ + cloud_plugin \ + cloud_stack \ + dashboard \ + datasource \ + folder \ + --color --retry-on-error --continue-on-error --diff --python ${{ matrix.python }} --coverage --docker working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}