From 0d5bc3ac79e3c803fdd2b499ece0c74d3fd65268 Mon Sep 17 00:00:00 2001 From: ykim-1 Date: Mon, 6 May 2024 16:47:24 -0700 Subject: [PATCH] Clean up syntax format --- .github/workflows/integration-tests.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 91398abb..dc54cd98 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -16,28 +16,28 @@ jobs: run: working-directory: .ansible/collections/ansible_collections/linode/cloud steps: - - name: checkout repo + - name: Checkout repo uses: actions/checkout@v3 with: path: .ansible/collections/ansible_collections/linode/cloud fetch-depth: 0 submodules: 'recursive' - - name: update packages + - name: Update packages run: sudo apt-get update -y - - name: install make + - name: Install make and build-essentials run: sudo apt-get install -y build-essential - - name: setup python 3 + - name: Setup Python 3 uses: actions/setup-python@v5 with: python-version: '3.x' - - name: install dependencies + - name: Install dependencies run: make deps - - name: install ansible dependencies + - name: Install ansible dependencies run: ansible-galaxy collection install amazon.aws:==6.0.1 - name: Install Collection @@ -48,7 +48,7 @@ jobs: - name: Run Integration Tests run: | - make TEST_ARGS="-v api_request_basic" test + make testall env: LINODE_API_TOKEN: ${{ secrets.DX_LINODE_TOKEN }} ANSIBLE_CALLBACKS_ENABLED: "junit" @@ -96,9 +96,7 @@ jobs: - name: Merge all test xmls in output directory run: | - pwd ls -R tests/output/junit - ls -l python tod_scripts/merge_ansible_results.py - name: Add additional information to XML report