Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## [Unreleased]

### Fixed
- 2025-11-19: Fixed ImportError by removing non-existent flow imports (custom_movements_flow, test_sequence_flow, duty_cycle_monitoring_flow, scheduled_duty_cycle_check) from src/progressive_automations_python/__init__.py. These flows only exist in scripts/prefect_flows.py, not in the package module. (Fixes job 55773363544)
- 2025-11-19: tests: Add tests/conftest.py to mock RPi.GPIO in CI so pytest can run in non-Raspberry Pi environments. (Fixes job 55770449647)

## Version 0.1 (development)
Expand Down
5 changes: 0 additions & 5 deletions src/progressive_automations_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@

from progressive_automations_python.prefect_flows import (
simple_movement_flow,
custom_movements_flow,
test_sequence_flow,
duty_cycle_monitoring_flow,
scheduled_duty_cycle_check
)

from progressive_automations_python.deployment import (
Expand All @@ -64,6 +60,5 @@
"get_duty_cycle_status",
"show_duty_cycle_status",
"simple_movement_flow",
"simple_movement_flow",
"create_deployments"
]
Loading