diff --git a/.github/workflows/execute_local_tests.yml b/.github/workflows/execute_local_tests.yml index 40fd23fe..f79a7a0c 100644 --- a/.github/workflows/execute_local_tests.yml +++ b/.github/workflows/execute_local_tests.yml @@ -83,20 +83,20 @@ jobs: if: ${{ github.event_name == 'workflow_dispatch' }} run: | cd ${{ github.workspace }}/ten-test/tests - /usr/local/bin/pysys.py run -m ten.local -r ${{ github.event.inputs.arguments }} + /usr/local/bin/pysys.py run -m ten.local ${{ github.event.inputs.arguments }} - name: 'Run tests on schedule' if: ${{ github.event_name == 'schedule' }} run: | cd ${{ github.workspace }}/ten-test/tests - /usr/local/bin/pysys.py run -m ten.local -i sanity + /usr/local/bin/pysys.py run -m ten.local ${{ github.event.inputs.arguments }} - name: 'Run the performance summary' if: always() continue-on-error: true run: | cd ${{ github.workspace }}/ten-test/admin - /usr/local/bin/pysys.py run -m ten.local -r graph_performance + /usr/local/bin/pysys.py run -m ten.local graph_performance - name: 'Collate performance output' if: always() diff --git a/.github/workflows/execute_merge_tests.yml b/.github/workflows/execute_merge_tests.yml index 28dbdcf9..3f2022a5 100644 --- a/.github/workflows/execute_merge_tests.yml +++ b/.github/workflows/execute_merge_tests.yml @@ -97,7 +97,7 @@ jobs: - name: 'Run tests' run: | cd ${{ github.workspace }}/ten-test/tests - /usr/local/bin/pysys.py run -m ten.local -r -e skip -e persistence -e performance -e robustness + /usr/local/bin/pysys.py run -m ten.local -e skip -e persistence -e performance -e robustness - name: 'Discord notification' if: success() diff --git a/.github/workflows/execute_remote_tests.yml b/.github/workflows/execute_remote_tests.yml index 307be8f9..ad704a94 100644 --- a/.github/workflows/execute_remote_tests.yml +++ b/.github/workflows/execute_remote_tests.yml @@ -58,7 +58,7 @@ jobs: - name: 'Run tests' run: | cd ${{ github.workspace }}/ten-test/tests - /usr/local/bin/pysys.py run -m ${{ github.event.inputs.environment }} -r ${{ github.event.inputs.arguments }} + /usr/local/bin/pysys.py run -m ${{ github.event.inputs.environment }} ${{ github.event.inputs.arguments }} - name: 'Collate pdf output' if: always()