-
Notifications
You must be signed in to change notification settings - Fork 0
Исправления GUI, кэша и парсинга ввода #2
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,43 @@ | ||
| """ | ||
| Утилиты для окружения тестов. | ||
|
|
||
| Главная задача файла — не дать pytest упасть, если pytest-cov не установлен, | ||
| но в pytest.ini присутствуют покрывающие опции (--cov и др.). Мы регистрируем | ||
| заглушки, чтобы тесты могли запускаться «из коробки», даже без дополнений. | ||
| """ | ||
|
|
||
| import importlib.util | ||
| import warnings | ||
|
|
||
|
|
||
| def _cov_plugin_available() -> bool: | ||
| """Есть ли установленный pytest-cov (независимо от автозагрузки).""" | ||
| return importlib.util.find_spec("pytest_cov") is not None | ||
|
|
||
|
|
||
| def pytest_addoption(parser) -> None: | ||
| """ | ||
| Регистрирует заглушки для опций покрытия, если pytest-cov недоступен. | ||
|
|
||
| Это позволяет запускать тесты даже в окружениях без dev-зависимостей. | ||
| """ | ||
| if _cov_plugin_available(): | ||
| return | ||
|
|
||
| cov_group = parser.getgroup( | ||
| "cov", | ||
| "coverage reporting (no-op без pytest-cov)" | ||
| ) | ||
| cov_group.addoption("--cov", action="append", default=[]) | ||
| cov_group.addoption("--cov-report", action="append", default=[]) | ||
| cov_group.addoption("--cov-fail-under", action="store", type=float, default=None) | ||
|
|
||
|
|
||
| def pytest_configure(config) -> None: | ||
| """Выводим предупреждение, если pytest-cov не найден.""" | ||
| if config.pluginmanager.hasplugin("cov") or _cov_plugin_available(): | ||
| return | ||
| warnings.warn( | ||
| "pytest-cov не установлен: опции покрытия из pytest.ini будут пропущены", | ||
| RuntimeWarning, | ||
| ) |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
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.
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.
The new
parse_amountnormalization treats any string with more than one separator as if the last separator were a decimal point (cleaned = ''.join(parts[:-1]) + '.' + parts[-1]), so an amount like"1.234.567"/"1,234,567"is parsed as1234.567instead of1234567. This silently shrinks large integer inputs by three orders of magnitude rather than rejecting them, so conversions for million-scale values entered with standard thousand grouping will be wrong.Useful? React with 👍 / 👎.