2
0

TestSuite_Sandbox.py 1.1 KB

123456789101112131415161718192021222324252627282930
  1. """
  2. All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
  3. its licensors.
  4. For complete copyright and license terms please see the LICENSE at the root of this
  5. distribution (the "License"). All use of this software is governed by the License,
  6. or, if provided, by the license below or the license accompanying this file. Do not
  7. remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
  8. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  9. """
  10. import pytest
  11. import os
  12. import sys
  13. from ly_test_tools import LAUNCHERS
  14. sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/../automatedtesting_shared')
  15. from base import TestAutomationBase
  16. @pytest.mark.SUITE_sandbox
  17. @pytest.mark.parametrize("launcher_platform", ['windows_editor'])
  18. @pytest.mark.parametrize("project", ["AutomatedTesting"])
  19. class TestAutomation(TestAutomationBase):
  20. def test_Opening_Closing_Pane(self, request, workspace, editor, launcher_platform):
  21. from . import Opening_Closing_Pane as test_module
  22. self._run_test(request, workspace, editor, test_module)