diff --git a/auth0/test/conftest.py b/auth0/test/conftest.py new file mode 100644 index 00000000..c6327215 --- /dev/null +++ b/auth0/test/conftest.py @@ -0,0 +1,6 @@ +import pytest +import random + +@pytest.fixture(autouse=True) +def set_random_seed(): + random.seed(42) \ No newline at end of file diff --git a/auth0/test_async/conftest.py b/auth0/test_async/conftest.py new file mode 100644 index 00000000..c6327215 --- /dev/null +++ b/auth0/test_async/conftest.py @@ -0,0 +1,6 @@ +import pytest +import random + +@pytest.fixture(autouse=True) +def set_random_seed(): + random.seed(42) \ No newline at end of file