Skip to content

Commit f61a6ea

Browse files
committed
feature: add the option --randomly-seed-per-test to use a different seed for each test
1 parent c2e8e2f commit f61a6ea

File tree

4 files changed

+51
-1
lines changed

4 files changed

+51
-1
lines changed

CHANGELOG.rst

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
=========
44

5+
3.16.0 (2024-04-09)
6+
-------------------
7+
8+
* Add the option ``--randomly-seed-per-test`` to use a different seed for each test.
9+
10+
Resolves `Issue #600 <https://github.com/pytest-dev/pytest-randomly/issues/600>`__
11+
512
3.15.0 (2023-08-15)
613
-------------------
714

README.rst

+3
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ You can disable behaviours you don't like with the following flags:
160160
the start of every test
161161
* ``--randomly-dont-reorganize`` - turn off the shuffling of the order of tests
162162

163+
By default each test starts out with the same seed, if you'd like a different one
164+
per test you can use the ``--randomly-seed-per-test`` flag.
165+
163166
The plugin appears to Pytest with the name 'randomly'. To disable it
164167
altogether, you can use the ``-p`` argument, for example:
165168

src/pytest_randomly/__init__.py

+18-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,15 @@ def pytest_addoption(parser: Parser) -> None:
9595
Default behaviour: use random.Random().getrandbits(32), so the seed is
9696
different on each run.""",
9797
)
98+
group._addoption(
99+
"--randomly-seed-per-test",
100+
action="store_true",
101+
dest="randomly_seed_per_test",
102+
default=False,
103+
help="""Use a different seed for each test. Can be helpful for getting
104+
different random data in each test, but still having reproducible
105+
tests. Default behaviour: False.""",
106+
)
98107
group._addoption(
99108
"--randomly-dont-reset-seed",
100109
action="store_false",
@@ -209,9 +218,17 @@ def pytest_runtest_setup(item: Item) -> None:
209218
_reseed(item.config, -1)
210219

211220

221+
def seed_from_string(string: str) -> int:
222+
return int(hashlib.md5(string.encode()).hexdigest(), 16)
223+
224+
212225
def pytest_runtest_call(item: Item) -> None:
213226
if item.config.getoption("randomly_reset_seed"):
214-
_reseed(item.config)
227+
if item.config.getoption("randomly_seed_per_test"):
228+
test_offset = seed_from_string(item.nodeid) + 100
229+
else:
230+
test_offset = 0
231+
_reseed(item.config, offset=test_offset)
215232

216233

217234
def pytest_runtest_teardown(item: Item) -> None:

tests/test_pytest_randomly.py

+23
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,29 @@ def test_b():
8282
out.assert_outcomes(passed=2, failed=0)
8383

8484

85+
def test_it_can_use_different_random_seed_per_test(ourtester):
86+
"""
87+
Run a pair of tests that generate a number and assert they produce different numbers.
88+
"""
89+
ourtester.makepyfile(
90+
test_one="""
91+
import random
92+
93+
def test_a():
94+
test_a.num = random.random()
95+
if hasattr(test_b, 'num'):
96+
assert test_a.num != test_b.num
97+
98+
def test_b():
99+
test_b.num = random.random()
100+
if hasattr(test_a, 'num'):
101+
assert test_b.num != test_a.num
102+
"""
103+
)
104+
out = ourtester.runpytest("--randomly-seed-per-test")
105+
out.assert_outcomes(passed=2, failed=0)
106+
107+
85108
def test_without_cacheprovider(ourtester):
86109
ourtester.makepyfile(
87110
test_one="""

0 commit comments

Comments
 (0)