12 lines
168 B
Python
12 lines
168 B
Python
import sys
|
|
|
|
import pytest
|
|
|
|
distributed = sys.argv[1]
|
|
pytest.main([
|
|
"-v",
|
|
"--distributed", distributed,
|
|
"--cov-report", "xml",
|
|
"--cov=.",
|
|
"tests"
|
|
])
|