File size: 425 Bytes
e4f7c80 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
if __name__ == "__main__":
import pytest
import sys
package_name = "pgmpy"
pytest_args = [
"--cov-config",
".coveragerc",
"--cov-report",
"html",
"--cov-report",
"term",
"--cov=" + package_name,
"--verbose",
]
pytest_args = pytest_args + sys.argv[1:]
sys.exit(pytest.main(pytest_args))
|