1234567891011121314151617181920212223242526272829 |
- [pytest]
- python_files = 'test_*.py' , '*_test.py' , '*_tests.py', 'TestSuite_*.py'
- norecursedirs = python/runtime Cache cmake
- junit_family=legacy
- log_format=%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)
- addopts='--tb=short' '--show-capture=log'
- timeout=1200
- markers = SUITE_smoke: Tiny, quick tests of fundamental operation (tests with no suite marker will also execute here in CI)
- SUITE_main: Wider tests of system functionality
- SUITE_periodic: low-priority verification, which should not block code submission
- SUITE_benchmark: Benchmarks which do not pass or fail but instead output statistics
- SUITE_sandbox: Temporarly contains flaky/unstable tests, this should not block code submission. This test suite should be ideally empty
- SUITE_awsi: Time consuming AWS integration end-to-end tests
- REQUIRES_gpu: Tests which require a physical GPU
- GROUP_tick: Tests which verify if systems update correctly with system ticks (for example, physics bodies should move smoothly)
|