mirror of
https://github.com/Thor77/TeamspeakStats.git
synced 2025-05-01 17:55:33 -04:00
14 lines
250 B
Python
14 lines
250 B
Python
# -*- coding: utf-8 -*-
|
|
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
|