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