core-extra/daemon/test.py
2017-08-02 12:25:57 -07:00

12 lines
168 B
Python

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