File: conftest.py

package info (click to toggle)
auth0-python 4.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,280 kB
  • sloc: python: 8,933; makefile: 15; sh: 2
file content (7 lines) | stat: -rw-r--r-- 134 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
import pytest
import random

@pytest.fixture(autouse=True)
def set_random_seed():
    random.seed(42)
    print("Random seeded to 42")