Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements/doctests.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pytest ==8.3.5
pytest ==8.4.0
pytest-doctestplus ==1.4.0
2 changes: 1 addition & 1 deletion requirements/fabric/test.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
coverage ==7.8.2
numpy >=1.17.2, <1.27.0
pytest ==8.3.5
pytest ==8.4.0
pytest-cov ==6.1.1
pytest-timeout ==2.4.0
pytest-rerunfailures ==15.1
Expand Down
2 changes: 1 addition & 1 deletion requirements/pytorch/test.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
coverage ==7.8.2
pytest ==8.3.5
pytest ==8.4.0
pytest-cov ==6.1.1
pytest-timeout ==2.4.0
pytest-rerunfailures ==15.1
Expand Down
3 changes: 1 addition & 2 deletions tests/tests_pytorch/models/test_hparams.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,7 @@ def __init__(self, test_arg, test_arg2):
model = LocalModel.load_from_checkpoint(raw_checkpoint_path, test_arg2=123)
assert model.hparams.test_arg == 14
assert "test_arg2" not in model.hparams # test_arg2 is not registered in class init

return raw_checkpoint_path
assert raw_checkpoint_path


# -------------------------
Expand Down
Loading