Files
o3de/AutomatedTesting/Gem/PythonTests/assetpipeline/ap_fixtures/clear_testingAssets_dir.py
T
Steve Pham 38261d0800 Shorten copyright headers by splitting into 2 lines (#2213)
* Updated all copyright headers to split the longer original copyright line into 2 shorter lines

Signed-off-by: Steve Pham <spham@amazon.com>
2021-07-16 15:25:48 -07:00

34 lines
955 B
Python
Executable File

"""
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)