File tree 4 files changed +51
-1
lines changed
4 files changed +51
-1
lines changed Original file line number Diff line number Diff line change 2
2
Changelog
3
3
=========
4
4
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
+
5
12
3.15.0 (2023-08-15)
6
13
-------------------
7
14
Original file line number Diff line number Diff line change @@ -160,6 +160,9 @@ You can disable behaviours you don't like with the following flags:
160
160
the start of every test
161
161
* ``--randomly-dont-reorganize `` - turn off the shuffling of the order of tests
162
162
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
+
163
166
The plugin appears to Pytest with the name 'randomly'. To disable it
164
167
altogether, you can use the ``-p `` argument, for example:
165
168
Original file line number Diff line number Diff line change @@ -95,6 +95,15 @@ def pytest_addoption(parser: Parser) -> None:
95
95
Default behaviour: use random.Random().getrandbits(32), so the seed is
96
96
different on each run.""" ,
97
97
)
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
+ )
98
107
group ._addoption (
99
108
"--randomly-dont-reset-seed" ,
100
109
action = "store_false" ,
@@ -209,9 +218,17 @@ def pytest_runtest_setup(item: Item) -> None:
209
218
_reseed (item .config , - 1 )
210
219
211
220
221
+ def seed_from_string (string : str ) -> int :
222
+ return int (hashlib .md5 (string .encode ()).hexdigest (), 16 )
223
+
224
+
212
225
def pytest_runtest_call (item : Item ) -> None :
213
226
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 )
215
232
216
233
217
234
def pytest_runtest_teardown (item : Item ) -> None :
Original file line number Diff line number Diff line change @@ -82,6 +82,29 @@ def test_b():
82
82
out .assert_outcomes (passed = 2 , failed = 0 )
83
83
84
84
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
+
85
108
def test_without_cacheprovider (ourtester ):
86
109
ourtester .makepyfile (
87
110
test_one = """
You can’t perform that action at this time.
0 commit comments