RunAtomScreenshotTests.bat 991 B

123456789101112131415161718
  1. REM --------------------------------------------------------------------------------------------------
  2. REM
  3. REM Copyright (c) Contributors to the Open 3D Engine Project.
  4. REM For complete copyright and license terms please see the LICENSE at the root of this distribution.
  5. REM
  6. REM SPDX-License-Identifier: Apache-2.0 OR MIT
  7. REM
  8. REM --------------------------------------------------------------------------------------------------
  9. REM record current dir
  10. pushd .
  11. REM cd to o3de root dir, %~dp0 is the path to the folder that contains this script
  12. cd %~dp0/../..
  13. setlocal
  14. call python/python.cmd -s -B -m pytest -v --tb=short --show-capture=stdout -c pytest.ini --build-directory AutomatedTesting/build/bin/profile AutomatedTesting/Gem/PythonTests/Atom/TestSuite_Periodic_GPU.py --output-path AutomatedTesting/build/Testing/LyTestTools/AutomatedTesting_Atom_TestSuite_Periodic_GPU --junitxml=AutomatedTesting/build/Testing/Pytest/AutomatedTesting_Atom_TestSuite_Periodic_GPU.xml
  15. endlocal
  16. popd