From b861a55680220e7ebecd8000374d936e6079ca98 Mon Sep 17 00:00:00 2001 From: "Molecule AI Dev Engineer A (Kimi)" Date: Fri, 19 Jun 2026 01:12:55 +0000 Subject: [PATCH] ci: run molecule-dev smoke tests in CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The repo-owned smoke suite was documented but CI only ran the canonical validate-plugin.py and an inline secret scan, so the smoke tests were never exercised in CI. Add a dedicated `smoke` job that installs pytest+pyyaml and runs `python -m pytest tests/ -v`. Fixes #14 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- .gitea/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index d56e0ce..7d64807 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -66,3 +66,15 @@ jobs: else: print("::notice::No secrets detected") PYEOF + + smoke: + name: smoke + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.11" + - run: pip install pytest pyyaml -q + - run: python -m pytest tests/ -v -- 2.52.0