-
Notifications
You must be signed in to change notification settings - Fork 690
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to src layout #921
Switch to src layout #921
Conversation
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # | ||
# PYTEST CONFIGURATION # |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are the changes to this file related to switching to src layout or is this something separate?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's separate, but would be good to have. VSCode would automatically detect the tests
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. One question
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #921 +/- ##
==========================================
- Coverage 84.97% 81.34% -3.63%
==========================================
Files 169 176 +7
Lines 6521 6812 +291
==========================================
Hits 5541 5541
- Misses 980 1271 +291
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks
Description
├── CHANGELOG.md ├── CITATION.cff ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── datasets ├── docs │ ├── anomalib.png │ ├── Makefile │ └── source ├── LICENSE ├── MANIFEST.in ├── notebooks │ ├── 000_getting_started │ ├── 100_datamodules │ ├── 200_models │ ├── 300_benchmarking │ ├── 400_openvino │ └── README.md ├── pyproject.toml ├── README.md ├── requirements │ ├── base.txt │ ├── dev.txt │ ├── docs.txt │ ├── extras.txt │ └── openvino.txt ├── setup.py ├── src │ └── anomalib ├── tests │ ├── helpers │ ├── __init__.py │ ├── nightly │ └── pre_merge ├── third-party-programs.txt ├── tools │ ├── benchmarking │ ├── hpo │ ├── inference │ ├── test.py │ └── train.py └── tox.ini
This official python link outlines the main advantages of this layout. Some of these are as follows:
Changes
Checklist