ci: temporarily disable complyctl integration tests#821
Open
marcusburghardt wants to merge 1 commit intocomplytime:mainfrom
Open
ci: temporarily disable complyctl integration tests#821marcusburghardt wants to merge 1 commit intocomplytime:mainfrom
marcusburghardt wants to merge 1 commit intocomplytime:mainfrom
Conversation
The complyctl upstream project is undergoing breaking CLI changes (plugin separation, OSCAL artifact cleanup) that cause all integration tests to fail, blocking every PR from merging. Comment out the test-integration job in ci_local.yml until complyctl stabilizes. All test code, fixtures, data, composite action, and Makefile targets are preserved for easy re-enablement by uncommenting the job block. Assisted-by: OpenCode (claude-opus-4-6) Signed-off-by: Marcus Burghardt <maburgha@redhat.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The complyctl upstream project is undergoing breaking CLI changes — plugin separation,
OSCAL artifact cleanup, and CLI redesign — that cause all integration tests in
complyscribe to fail. This blocks every PR from merging regardless of the PR's content
(e.g., PR #816 failing on
test-integration).This PR comments out the
test-integrationjob inci_local.ymluntil complyctlstabilizes. All test infrastructure is preserved for easy re-enablement:
tests/integration/— test source code (untouched)tests/integration_data/— test data files (untouched).github/actions/test-integration/— composite action (untouched)Makefiletargettest-integration— still available for local use (untouched)To re-enable when complyctl changes are stable:
.github/workflows/ci_local.ymlTEMPORARILY DISABLEDcomment blocktest-integrationjob blockRelated Issues
Review Hints
This PR modifies exactly one file:
.github/workflows/ci_local.yml.The change is at the bottom of the file (the
test-integrationjob block iscommented out with an explanatory comment).
No source code, test code, or CI infrastructure is deleted. The entire change
is reversible by uncommenting 8 lines.
Unit tests (
make test) and E2E tests (make test-e2e) are completely unaffectedby this change.
The
comments-indentationyamllint warning on the comment block is expected andharmless — the project's
.yamllint.ymlhascomments: disablebutcomments-indentationis a separate rule. The pre-existingtruthywarning onon:(line 4) is also unchanged.