continuous-testing
Integrate automated testing into CI/CD pipelines for continuous quality feedback. Use for continuous testing, CI testing, automated testing pipelines, test orchestration, and DevOps quality practices.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o continuous-testing.zip https://jpskill.com/download/21379.zip && unzip -o continuous-testing.zip && rm continuous-testing.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21379.zip -OutFile "$d\continuous-testing.zip"; Expand-Archive "$d\continuous-testing.zip" -DestinationPath $d -Force; ri "$d\continuous-testing.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
continuous-testing.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
continuous-testingフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 8
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Continuous Testing
目次
概要
Continuous testing は、ソフトウェア開発ライフサイクル全体にわたって自動テストを統合し、あらゆる段階で品質に関する迅速なフィードバックを提供します。これにより、開発プロセスの早い段階でテストが行われ、コード変更が本番環境に到達する前に自動的に検証されることが保証されます。
使用場面
- CI/CD パイプラインのセットアップ
- コミット時のテスト実行の自動化
- シフトレフトテストの実装
- テストの並列実行
- デプロイメントのためのテストゲートの作成
- テストの健全性の監視
- テスト実行時間の最適化
- 品質ゲートの確立
クイックスタート
最小限の動作例:
# .github/workflows/ci.yml
name: Continuous Testing
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
env:
NODE_VERSION: "18"
jobs:
# Unit tests - Fast feedback
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
// ... (完全な実装についてはリファレンスガイドを参照してください)
リファレンスガイド
references/ ディレクトリ内の詳細な実装:
| ガイド | 内容 |
|---|---|
| GitHub Actions CI Pipeline | GitHub Actions CI パイプライン |
| GitLab CI Pipeline | GitLab CI パイプライン |
| Jenkins Pipeline | Jenkins パイプライン |
| Test Selection Strategy | テスト選択戦略 |
| Flaky Test Detection | 不安定なテストの検出 |
| Test Metrics Dashboard | テストメトリクスダッシュボード |
ベストプラクティス
✅ DO
- 最初に高速なテストを実行する (ユニット → 統合 → E2E)
- テスト実行を並列化する
- 依存関係をキャッシュする
- 適切なタイムアウトを設定する
- テストの健全性と不安定性を監視する
- 品質ゲートを実装する
- テスト選択戦略を使用する
- 包括的なレポートを生成する
❌ DON'T
- すべてのテストを順次実行する
- 不安定なテストを無視する
- テストのメンテナンスを怠る
- テストが互いに依存するようにする
- すべてのコミットで低速なテストを実行する
- 失敗したテストでデプロイする
- テスト実行時間を無視する
- セキュリティスキャンをスキップする
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Continuous Testing
Table of Contents
Overview
Continuous testing integrates automated testing throughout the software development lifecycle, providing rapid feedback on quality at every stage. It shifts testing left in the development process and ensures that code changes are validated automatically before reaching production.
When to Use
- Setting up CI/CD pipelines
- Automating test execution on commits
- Implementing shift-left testing
- Running tests in parallel
- Creating test gates for deployments
- Monitoring test health
- Optimizing test execution time
- Establishing quality gates
Quick Start
Minimal working example:
# .github/workflows/ci.yml
name: Continuous Testing
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
env:
NODE_VERSION: "18"
jobs:
# Unit tests - Fast feedback
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| GitHub Actions CI Pipeline | GitHub Actions CI Pipeline |
| GitLab CI Pipeline | GitLab CI Pipeline |
| Jenkins Pipeline | Jenkins Pipeline |
| Test Selection Strategy | Test Selection Strategy |
| Flaky Test Detection | Flaky Test Detection |
| Test Metrics Dashboard | Test Metrics Dashboard |
Best Practices
✅ DO
- Run fast tests first (unit → integration → E2E)
- Parallelize test execution
- Cache dependencies
- Set appropriate timeouts
- Monitor test health and flakiness
- Implement quality gates
- Use test selection strategies
- Generate comprehensive reports
❌ DON'T
- Run all tests sequentially
- Ignore flaky tests
- Skip test maintenance
- Allow tests to depend on each other
- Run slow tests on every commit
- Deploy with failing tests
- Ignore test execution time
- Skip security scanning
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (2,757 bytes)
- 📎 references/flaky-test-detection.md (1,981 bytes)
- 📎 references/github-actions-ci-pipeline.md (6,000 bytes)
- 📎 references/gitlab-ci-pipeline.md (1,770 bytes)
- 📎 references/jenkins-pipeline.md (3,545 bytes)
- 📎 references/test-metrics-dashboard.md (2,264 bytes)
- 📎 references/test-selection-strategy.md (1,832 bytes)
- 📎 scripts/validate-pipeline.sh (502 bytes)