mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
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.
5 lines
126 B
Python
5 lines
126 B
Python
# main entry point into the test folder tests runned under pytest
|
|
import pytest
|
|
|
|
if __name__ == "__main__":
|
|
pytest.main()
|