README.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Copyright (c) Contributors to the Open 3D Engine Project.
  2. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  3. SPDX-License-Identifier: Apache-2.0 OR MIT
  4. INTRODUCTION
  5. ------------
  6. EditorPythonBindings is a Python project that contains a collection of editor testing tools
  7. developed by the O3DE feature teams. The project contains tools for system level
  8. editor tests.
  9. REQUIREMENTS
  10. ------------
  11. * Python 3.10.13 (64-bit)
  12. It is recommended that you completely remove any other versions of Python
  13. installed on your system.
  14. INSTALL
  15. -----------
  16. It is recommended to set up these these tools with O3DE's CMake build commands.
  17. Assuming CMake is already setup on your operating system, below are some sample build commands:
  18. cd /path/to/od3e/
  19. mkdir windows
  20. cd windows
  21. cmake .. -G "Visual Studio 16 2019" -DLY_PROJECTS=AutomatedTesting
  22. To manually install the project in development mode using your own installed Python interpreter:
  23. cd /path/to/od3e/AutomatedTesting/Gem/PythonTests/EditorPythonTestTools
  24. /path/to/your/python -m pip install -e .
  25. UNINSTALLATION
  26. --------------
  27. The preferred way to uninstall the project is:
  28. /path/to/your/python -m pip uninstall editor_python_test_tools