sanity_test.py 927 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. """
  2. Copyright (c) Contributors to the Open 3D Engine Project.
  3. For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. SPDX-License-Identifier: Apache-2.0 OR MIT
  5. Sanity tests to verify whether suite filtering is hooked up
  6. """
  7. import pytest
  8. def test_Sanity_Untagged_Pass(): # should happen in main pass also
  9. pass
  10. @pytest.mark.SUITE_smoke
  11. def test_Sanity_Smoke_Pass():
  12. pass
  13. @pytest.mark.SUITE_main
  14. def test_Sanity_Main_Pass(): # should happen in main pass
  15. pass
  16. @pytest.mark.SUITE_periodic
  17. def test_Sanity_Periodic_Pass():
  18. pass
  19. @pytest.mark.SUITE_benchmark
  20. def test_Sanity_Benchmark_Pass():
  21. pass
  22. @pytest.mark.SUITE_sandbox
  23. def test_Sanity_Sandbox_Pass():
  24. pass
  25. @pytest.mark.SUITE_awsi
  26. def test_Sanity_AWSI_Pass():
  27. pass
  28. @pytest.mark.REQUIRES_gpu
  29. def test_Sanity_RequireGpu_Pass():
  30. pass
  31. @pytest.mark.skip
  32. def test_Insanity():
  33. raise RuntimeError