Skip to content

Commit

Permalink
skip benchmarking tests by default due to unpredictable performance o…
Browse files Browse the repository at this point in the history
…f CI runner

Signed-off-by: Reuben Miller <[email protected]>
  • Loading branch information
reubenmiller committed Nov 2, 2023
1 parent 32672b1 commit 1c70561
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ jobs:
invoke test \
--processes "${{ inputs.processes || '' }}" \
--include "${{ inputs.include || '' }}" \
--exclude "test:on_demand" \
--exclude "test:on_demand OR theme:benchmarks" \
--outputdir output
- name: Upload test results
Expand Down
4 changes: 2 additions & 2 deletions tests/RobotFramework/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def flake_finder(
outputdir="output_flake_finder",
processes=None,
include="",
exclude="test:on_demand",
exclude="test:on_demand OR theme:benchmarks",
clean=False,
):
"""Run tests multiple times to find any flakey tests
Expand Down Expand Up @@ -415,7 +415,7 @@ def test(
outputdir=None,
processes=None,
include="",
exclude="test:on_demand",
exclude="test:on_demand OR theme:benchmarks",
):
"""Run tests
Expand Down

0 comments on commit 1c70561

Please sign in to comment.