You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
955 B
Python
34 lines
955 B
Python
"""
|
|
Copyright (c) Contributors to the Open 3D Engine Project.
|
|
For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
|
|
SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
Fixture for clearing "testingAssets" directory from <build>/dev/<project>
|
|
"""
|
|
|
|
# Import builtin libraries
|
|
import os
|
|
import pytest
|
|
|
|
# Import LyTestTools
|
|
import ly_test_tools.environment.file_system as fs
|
|
|
|
# Import fixtures
|
|
from ..ap_fixtures.ap_setup_fixture import ap_setup_fixture as ap_setup_fixture
|
|
|
|
|
|
@pytest.fixture
|
|
def clear_testingAssets_dir(request, workspace, ap_setup_fixture) -> None:
|
|
env = ap_setup_fixture
|
|
testingAssets_dir = os.path.join(env["project_dir"], "testingAssets")
|
|
|
|
def remove_testingAssets_dir():
|
|
fs.delete([testingAssets_dir], False, True)
|
|
|
|
# Delete the directory upon execution
|
|
remove_testingAssets_dir()
|
|
|
|
# Delete the directory on teardown
|
|
request.addfinalizer(remove_testingAssets_dir)
|