fix: restore CI workflow and smoke tests deleted by bulk revert#297
Merged
lbartoszcze merged 1 commit intomainfrom Feb 9, 2026
Merged
fix: restore CI workflow and smoke tests deleted by bulk revert#297lbartoszcze merged 1 commit intomainfrom
lbartoszcze merged 1 commit intomainfrom
Conversation
The revert in #294 removed 366 agent-created files, but also deleted the CI workflow and smoke test suite that were needed for quality gates. Restores: - .github/workflows/ci.yml (lint + test + build) - tests/test_smoke.py (17 smoke tests, no API keys needed) - [tool.pytest.ini_options] in pyproject.toml Improvements over original: - Added timeout-minutes: 10 to test jobs to prevent CI hangs - Added pytest-timeout>=2.0.0 to dev deps with 30s per-test default - Added --timeout=30 flag to pytest invocation in CI Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
3 tasks
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
.github/workflows/ci.yml) and smoke test suite (tests/test_smoke.py) that were accidentally deleted by the bulk revert in Revert all ecosystem improver agent changes #294Changes
.github/workflows/ci.yml— lint (ruff) + test (Python 3.10/3.11/3.12) + build, withtimeout-minutes: 10to prevent CI hangstests/test_smoke.py— 17 smoke tests covering imports, skill base classes, cognition dataclasses, filesystem skilltests/__init__.py— empty init for test packagepyproject.toml— restored[tool.pytest.ini_options], addedpytest-timeout>=2.0.0to dev deps with 30s default timeoutTest plan
pytest tests/ -v --tb=short --timeout=30)ruff check singularity/ --select E,F --ignore E501,E402,E721,E731,E741,F401,F841,F541)🤖 Generated with Claude Code