We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86c26d8 commit 08dde66Copy full SHA for 08dde66
tests/tests_fabric/utilities/test_seed.py
@@ -49,7 +49,8 @@ def test_correct_seed_with_environment_variable():
49
def test_invalid_seed():
50
"""Ensure that a ValueError is raised if an invalid seed is given."""
51
with pytest.raises(ValueError, match="Invalid seed specified"):
52
- seed = seed_everything()
+ seed_everything()
53
+
54
55
@mock.patch.dict(os.environ, {}, clear=True)
56
@pytest.mark.parametrize("seed", [10e9, -10e9])
0 commit comments