7 lines
163 B
Python
Executable file
7 lines
163 B
Python
Executable file
#!/usr/bin/env python3
|
|
import pytest
|
|
import sys
|
|
pytest.main(' '.join([
|
|
'--cov-report=term-missing',
|
|
'--cov=szurubooru',
|
|
'szurubooru'] + sys.argv[1:]))
|