core-extra/daemon/test.py

8 lines
152 B
Python

import sys
import pytest
distributed = sys.argv[1]
pytest.main(
["-v", "--distributed", distributed, "--cov-report", "xml", "--cov=.", "tests"]
)