TeamspeakStats/tsstats/tests/conftest.py

15 lines
250 B
Python
Raw Normal View History

2017-09-16 16:31:15 -04:00
# -*- 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