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