Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(colcon-test): remove label-regex filter #305

Merged
merged 2 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions colcon-test/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ jobs:
rosdistro: galactic
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
build-depends-repos: build_depends.repos
label-regex: ${{ matrix.test-label }}

- name: Upload coverage to Codecov
if: ${{ steps.test.outputs.coverage-report-files != '' }}
Expand All @@ -76,7 +75,6 @@ jobs:
| rosdistro | true | ROS distro. |
| target-packages | true | The target packages to test. |
| build-depends-repos | false | The `.repos` file that includes build dependencies. |
| label-regex | false | The regex pattern of test labels to be run. |
| token | false | The token for build dependencies. |

## Outputs
Expand Down
5 changes: 0 additions & 5 deletions colcon-test/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ inputs:
build-depends-repos:
description: ""
required: false
label-regex:
description: ""
required: false
default: .* # Run all tests
token:
description: ""
required: false
Expand Down Expand Up @@ -93,7 +89,6 @@ runs:
colcon test --event-handlers console_cohesion+ \
--mixin coverage-pytest \
--packages-above ${{ inputs.target-packages }} \
--ctest-args -L "${{ inputs.label-regex }}" \
--executor sequential \
--return-code-on-test-failure
Expand Down
Loading