mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
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.
This commit is contained in:
parent
915813815b
commit
679c562229
1 changed files with 5 additions and 0 deletions
5
tests/__main__.py
Normal file
5
tests/__main__.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
# main entry point into the test folder tests runned under pytest
|
||||
import pytest
|
||||
|
||||
if __name__ == "__main__":
|
||||
pytest.main()
|
||||
Loading…
Add table
Add a link
Reference in a new issue