Pytest for random draws on final python project

Tell us what’s happening:
The requirements say you must have a random draw, which I do.
The pytest has an expected value it’s comparing to my random draw.
Do I bypass this test by using a decorator and passing the test what’s expected?
And aren’t the probabilities going to differ each time the probability experiment is run?
[SOLVED]
Nevermind, I found the post about the tests having a seed, I was including a random.shuffle(self.contents) to make results more random, so it couldn’t pass the tests.