-
Notifications
You must be signed in to change notification settings - Fork 32
feat: add type checking for ncores and memory setters
#261
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
haneug
merged 7 commits into
faccts:main
from
nakul680:feat/257-add-type-check-for-ncores
Jul 14, 2026
+97
−4
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
7ec638d
fix: add type checking for `ncores` and `memory` setters
nakul680 5d45d43
Merge branch 'main' into feat/257-add-type-check-for-ncores
nakul680 a023e46
fix: update docstrings
nakul680 dcf0d49
fix: fix wording of docstring
nakul680 8341dba
fix: add to changelog
nakul680 2c80467
Merge branch 'main' into feat/257-add-type-check-for-ncores
haneug 9837156
chore: small fix in CHANGELOG.md
haneug 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,66 @@ | ||
| import pytest | ||
|
|
||
| from opi.core import Calculator | ||
|
|
||
| """ | ||
| This module contains tests for the `ncores` and `memory` properties of the `Input` class. | ||
| """ | ||
|
|
||
|
|
||
| @pytest.fixture | ||
| def empty_calc(): | ||
| """An empty instance of `Calculator`.""" | ||
| empty_calc = Calculator("test", version_check=False) | ||
| return empty_calc | ||
|
|
||
|
|
||
| @pytest.mark.unit | ||
| @pytest.mark.input | ||
| @pytest.mark.parametrize("ncores", [0, 4, None]) | ||
|
nakul680 marked this conversation as resolved.
|
||
| def test_ncores_valid(empty_calc: Calculator, ncores: int | None): | ||
| """Test for `Input.ncores` setter with valid values.""" | ||
| empty_calc.input.ncores = ncores | ||
| assert empty_calc.input.ncores == ncores | ||
|
|
||
|
|
||
| @pytest.mark.unit | ||
| @pytest.mark.input | ||
| @pytest.mark.parametrize("ncores", ["4", 4.0, [4]]) | ||
| def test_ncores_wrong_type(empty_calc: Calculator, ncores: object): | ||
| """Test for `Input.ncores` setter with values of the wrong type.""" | ||
| with pytest.raises(TypeError): | ||
| empty_calc.input.ncores = ncores | ||
|
|
||
|
|
||
| @pytest.mark.unit | ||
| @pytest.mark.input | ||
| def test_ncores_negative(empty_calc: Calculator): | ||
| """Test for `Input.ncores` setter with an invalid negative value.""" | ||
| with pytest.raises(ValueError): | ||
| empty_calc.input.ncores = -1 | ||
|
|
||
|
|
||
| @pytest.mark.unit | ||
| @pytest.mark.input | ||
| @pytest.mark.parametrize("memory", [0, 4000, None]) | ||
| def test_memory_valid(empty_calc: Calculator, memory: int | None): | ||
| """Test for `Input.memory` setter with valid values.""" | ||
| empty_calc.input.memory = memory | ||
| assert empty_calc.input.memory == memory | ||
|
|
||
|
|
||
| @pytest.mark.unit | ||
| @pytest.mark.input | ||
| @pytest.mark.parametrize("memory", ["4000", 4000.0, [4000]]) | ||
| def test_memory_wrong_type(empty_calc: Calculator, memory: object): | ||
| """Test for `Input.memory` setter with values of the wrong type.""" | ||
| with pytest.raises(TypeError): | ||
| empty_calc.input.memory = memory | ||
|
|
||
|
|
||
| @pytest.mark.unit | ||
| @pytest.mark.input | ||
| def test_memory_negative(empty_calc: Calculator): | ||
| """Test for `Input.memory` setter with an invalid negative value.""" | ||
| with pytest.raises(ValueError): | ||
| empty_calc.input.memory = -1 | ||
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.
Uh oh!
There was an error while loading. Please reload this page.