This document discusses property-based testing with continuous integration to hunt bugs. It explains property-based testing, which asserts properties about the relationship between inputs and outputs rather than just example tests. The document covers using predetermined and randomized inputs with libraries like Hypothesis. It also demonstrates a continuous integration pipeline for bug hunting that runs property tests with randomized inputs on a scheduled basis to thoroughly test code. The goal is to detect bugs earlier by randomly testing properties rather than just examples.