Fixture Data - CI/CD Glossary Definition
Fixture data is a fixed, predefined dataset loaded before a test so the test runs against a known state. Unlike seed data, fixtures exist specifically to make assertions repeatable.
In CI
Frameworks like Rails fixtures, Django fixtures, and pytest factories load fixtures into a test database at the start of a run. Resetting fixtures between tests prevents one test from leaking state into the next.