5 lines
49 B
Bash
5 lines
49 B
Bash
|
#!/bin/bash -e
|
||
|
|
||
|
coverage run -m pytest -v
|
||
|
exit 0
|