9 lines
100 B
Python
9 lines
100 B
Python
import pytest
|
|
|
|
pytest.main([
|
|
"-v",
|
|
"--cov-report",
|
|
"xml",
|
|
"--cov=.",
|
|
"tests"
|
|
])
|