-
Notifications
You must be signed in to change notification settings - Fork 38
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
Addition of Poethepoet package as task runner manager #305
Closed
Conversation
This file contains 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
more yahboom compatibility
…to develop_irq_based
reviewed RU fixed undetected texts
so all printers are compatible
merge doc updates
and better irq event flush
faster camera refactor m5stickv brightness pylint
pylint simulator adjustments
an alternative to krux_colors.py
seeds.json on sdcard padded to avoid abandoned bytes
Added some poe tasks for formatting, linting and tests Added some changes on README to point the format, linting and tests with poe
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.
Description
It add the:
poethepoet
module topyproject.toml
;README.md
to substituteformat
,linting
andtest
sections.Poe the poet
Poethepoet is a nice task runner that works well with poetry.
I defined some tasks that can be called with:
poetry run poe format
(executeblack
in./src
and./tests
with one command);poetry run poe lint
(executepylint
in./src
)poetry run poe test
(executepytest --cache-clear --cov src/krux --cov-report html ./tests
)pre-commit
(run the tasks above in sequence).What is the purpose of this pull request?