diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9c9634aa1..2c93f4d96 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -62,14 +62,15 @@ jobs: exit_code=0 { if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then - pytest_args="${{ github.event.inputs.pytest_command }}" + pytest_args='-m "not devRun"' else pytest_args='-m "not devRun"' fi - xvfb-run pytest $pytest_args \ + xvfb-run pytest -m "not devRun" \ --base-url ${{ vars.BASE_URL }} \ --splits ${{ github.event.inputs.machine_count || 2 }} \ - --group ${{ matrix.group }} + --group ${{ matrix.group }} \ + --collect-only -v } || { exit_code=$? }