-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
A.Shpak
committed
Nov 14, 2024
1 parent
0517dc8
commit b28b4ae
Showing
15 changed files
with
381 additions
and
576 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
SOURCE_DIR := "winregistry" | ||
|
||
tests: pytest | ||
fmt: black isort | ||
|
||
isort: | ||
poetry run isort {{ SOURCE_DIR }} --diff | ||
# poetry run isort test_curlify3.py --diff | ||
poetry run isort winregistry.py | ||
|
||
black: | ||
poetry run isort {{ SOURCE_DIR }} | ||
poetry run black winregistry.py | ||
# poetry run isort test_curlify3.py | ||
|
||
pytest: | ||
poetry run pytest -vv | ||
|
||
ruff: | ||
poetry run ruff check --fix {{SOURCE_DIR}} | ||
poetry run ruff check --fix winregistry.py | ||
|
||
mypy: | ||
poetry run mypy --pretty -p {{SOURCE_DIR}} | ||
poetry run mypy --pretty winregistry.py |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "winregistry" | ||
version = "1.1.1" | ||
version = "0.0.0" | ||
description = "Library aimed at working with Windows registry" | ||
authors = ["Aleksandr Shpak <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -20,7 +20,7 @@ python = ">=3.9" | |
mypy = "^1.13" | ||
pytest = "^8.3" | ||
black = "^24.10" | ||
robotframework = "^7.1" | ||
robotframework = ">=7.1" | ||
isort = "^5.13" | ||
ruff = "^0.7.3" | ||
|
||
|
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
Empty file.
Oops, something went wrong.