lvtd-llc/skills

django-ci-test-optimization

Optimize Django and pytest-django test execution in CI with cache configuration, slow-test splitting, database reuse strategy, parallel workers, pytest-xdist, CircleCI/GitHub Actions/Jenkins/Travis patterns, and full-coverage safeguards.

First seen Jun 21, 2026

Installation

$ npx skills add lvtd-llc/skills --skill django-ci-test-optimization

Summary

  • Optimize Django and pytest-django test execution in CI with cache configuration, slow-test splitting, database reuse strategy, parallel workers, pytest-xdist, CircleCI/GitHub Actions/Jenkins/Travis patterns, and full-coverage safeguards.
  • Use when CI test jobs are slow, flaky under parallelism, missing slow-test coverage, or need a local-vs-CI test command design.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from lvtd-llc/skills · top by installs.

npx skills add lvtd-llc/skills

Browse all from lvtd-llc/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License LICENSE
Default branch main
Open issues 0
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Version0.1.0
LicenseMIT
CompatibilityCodex, Claude Code, and other Agent Skills-compatible clients.
Declared agents claude-code codex
More metadata
version
0.1.0
displayName
Django CI Test Optimization
category
Django
tags
django,testing,ci,pytest,github-actions

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 3,246 B
  • docs SUMMARY.md 400 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 57 installs

SKILL.md

Django CI Test Optimization

CI optimization should reduce feedback time without reducing confidence. Keep fast local commands and full CI coverage distinct, then make the CI path faster with caching, parallelism, and sensible split points.

CI Workflow

  1. Capture current CI timing.

- Separate dependency install, test database setup, test execution, and artifact upload. - Compare CI time with local wall-clock time to spot environment-only overhead.

  1. Cache dependencies first.

- Use CI-native cache primitives for pip or package-manager caches. - Cache the package download cache, not an unsafe mutable virtualenv unless the project already supports that pattern.

  1. Keep local shortcuts honest.

- Local runs may skip slow tests or reuse databases. - CI should run slow tests and at least one migration-realistic database setup path.

  1. Split tests deliberately.

- Split slow vs normal tests when slow markers are meaningful. - Use parallel workers after the suite is safe under django-test-parallelization. - Avoid duplicating expensive setup across too many shards.

  1. Scale hardware only after obvious waste is removed.

- Faster runners can be the pragmatic answer, but they hide inefficient setup when used too early.

Read [ci-patterns.md](references/ci-patterns.md) for command and configuration patterns.

Decision Rules

  • Cache dependency downloads before rewriting test code for CI-only speed.
  • Register pytest marks strictly so slow typos do not silently change coverage.
  • If local commands exclude slow tests, add a CI job that includes them.
  • If using no-migration local shortcuts, add a CI path that runs real migrations.
  • Split by tags when test categories are intentionally different; split by workers when the suite is homogeneous enough.
  • Use timing data to choose shard boundaries.

Common Mistakes

  • Caching the wrong path and seeing no improvement.
  • Letting slow tests disappear from CI after adding local skip defaults.
  • Running too many shards and paying database/setup cost repeatedly.
  • Using SQLite in CI for a PostgreSQL/MySQL production app.
  • Enabling parallel CI workers before fixing shared resources.
  • Treating larger runners as a substitute for profiling.

Verification

Before finishing:

  • CI still runs all required test categories.
  • Cache keys change when dependencies change.
  • Test split commands are documented and reproducible locally where possible.
  • Slow-test or worker split reduces wall-clock time in actual CI logs.
  • A debugging fallback command exists for serial reproduction.