ca58f636ee906089299f4c10851be95003e3176b
Adds 113 tests covering: - abc: RegistryABC (concrete implementation + edge cases) - environment: Environment get/set, EnvironmentEnum - pipes: BoolPipe, IPAddressPipe (incl. roundtrip + error cases) - time: Cron (next(), intervals, invalid expression) - utils: Cache (TTL, expiry, cleanup), get_value (incl. bug documentation: cast result not returned for string->typed values), JSONProcessor (nested objects, enums, defaults) - property: classproperty (class access, instance access, subclass) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Prepare for development
After cloning the repository, run the following commands to set up your development environment:
python -m venv .venv
source .venv/bin/activate
# On Windows use `.venv\Scripts\activate`
# On Windows with git bash use `source .venv/Scripts/activate`
bash install.sh
Install cpl-cli as a development package:
pip install -e src/core
pip install -e src/cli
# test with:
cpl v
When using Pycharm, mark all directories under src/ as "Sources Root" and exa to ensure proper module resolution.