Add Docker dev environment and charging binary sensor - #67
Merged
Conversation
- Add Dockerfile.dev and document Docker-based workflow in README and CLAUDE.md so contributors never need to install dependencies on the host - Add PetTracerChargingBinarySensor (binary_sensor.py) with full test coverage; wire it into async_setup_entry alongside the at-home sensor Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Merged
kylegordon
added a commit
that referenced
this pull request
Jun 29, 2026
## What's Changed * chore(deps): update pytest-homeassistant-custom-component requirement from >=0.13.340 to >=0.13.342 by @dependabot[bot] in #66 * Add Docker dev environment and charging binary sensor by @kylegordon in #67 **Full Changelog**: v1.0.7...v1.0.8 Co-authored-by: kylegordon <231528+kylegordon@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Dockerfile.dev— a minimal Python 3.12 image that installsrequirements-test.txt(which pulls in Home Assistant viapytest-homeassistant-custom-component)README.md(Local Development section) andCLAUDE.mdso all contributors run tests and lint inside the container rather than on the hostPetTracerChargingBinarySensortobinary_sensor.py, wire it intoasync_setup_entry, and add full test coverage intests/test_binary_sensor.pyTest plan
docker build -f Dockerfile.dev -t pettracer-dev .completes successfullydocker run --rm -v "$PWD":/workspace pettracer-dev pytest --cov=custom_components.pettracer --cov-report=term -v— all tests pass, coverage ≥80%🤖 Generated with Claude Code