Skip to content

Commit

Permalink
We don't use -r anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
moraygrieve committed Dec 17, 2024
1 parent 42746f8 commit f0001a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/execute_local_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/execute_merge_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/execute_remote_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit f0001a0

Please sign in to comment.