Skip to content
Draft
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
4 changes: 4 additions & 0 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ Clean-up code at the end of a task with:
# Test cases
Run tests with such template command:
`env TEST_NOHW=1 python3 src/odemis/.../name_of_the_test_file.py TestCaseClassName.test_method_name`

# General Code Review Standards
## Compliance
Check PR changes for adherence to coding standards and guidelines, and for potential security issues. If any items in PULL_REQUEST_TEMPLATE.md apply, ensure they are addressed.
8 changes: 8 additions & 0 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## Compliance:
- [ ] Hardware: Does this change control logic, power limits, or physical movement?
- [ ] Security: Does this affect data encryption, user permissions, or network ports?
- [ ] Compliance: Does this alter a feature described in the Technical File or Intended Use?

## Feature Flag
- [ ] No feature flag needed
- [ ] Behind feature flag: `FLAG_NAME`
Loading