ayon-core/tests/__main__.py
Jakub Jezek 679c562229
Adds test execution entrypoint
Adds a main entry point to the tests directory,
allowing for test execution via `pytest.main()`.
This simplifies the process of running tests directly from the tests folder.
2025-06-24 14:19:44 +02:00

5 lines
126 B
Python

# main entry point into the test folder tests runned under pytest
import pytest
if __name__ == "__main__":
pytest.main()