9 lines
173 B
Python
9 lines
173 B
Python
import pytest
|
|
from faker import Faker
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def faker():
|
|
f = Faker(["en_US", "pl_PL"])
|
|
f.seed_instance(1234)
|
|
return f
|