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:
Jakub Jezek 2025-06-24 14:19:44 +02:00
parent 915813815b
commit 679c562229
No known key found for this signature in database
GPG key ID: 06DBD609ADF27FD9

5
tests/__main__.py Normal file
View file

@ -0,0 +1,5 @@
# main entry point into the test folder tests runned under pytest
import pytest
if __name__ == "__main__":
pytest.main()