8 lines
130 B
Python
8 lines
130 B
Python
|
import pytest
|
||
|
from email_pruner import spawn
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope="session", autouse=True)
|
||
|
def emails():
|
||
|
return spawn(100)
|