19 lines
356 B
Python
19 lines
356 B
Python
|
|
import pytest
|
|
|
|
@pytest.fixture("session")
|
|
def setup(request):
|
|
setup = CostlySetup()
|
|
request.addfinalizer(setup.finalize)
|
|
return setup
|
|
|
|
class CostlySetup:
|
|
def __init__(self):
|
|
import time
|
|
print ("performing costly setup")
|
|
time.sleep(5)
|
|
self.timecostly = 1
|
|
|
|
def finalize(self):
|
|
del self.timecostly
|