-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(test): add main test for hm-serial (#13588)
- Loading branch information
1 parent
3373bc6
commit d277378
Showing
6 changed files
with
210 additions
and
3 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
poetry-env-use: | ||
poetry env use python3.11 | ||
poetry env use python3.12 | ||
poetry-update-lock-file: | ||
poetry lock --no-update | ||
poetry-install: | ||
poetry install --no-root | ||
|
||
poetry-run-dev: | ||
poetry run poe dev | ||
poetry-run-test: | ||
poetry run poe test | ||
poetry-run-test-coverage: | ||
poetry run poe test-coverage |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import unittest | ||
|
||
|
||
class TestMain(unittest.TestCase): | ||
def test_main(self): | ||
self.assertTrue(True) | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |