mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-03-14 10:34:38 -04:00
13 lines
226 B
Python
13 lines
226 B
Python
from os import remove
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def output(request):
|
|
output_path = 'tsstats/tests/res/output.html'
|
|
|
|
def clean():
|
|
remove(output_path)
|
|
request.addfinalizer(clean)
|
|
yield output_path
|