6 lines
121 B
Bash
6 lines
121 B
Bash
|
#!/bin/bash -xe
|
||
|
coverage run --concurrency=multiprocessing manage.py test
|
||
|
coverage combine
|
||
|
coverage html
|
||
|
coverage report
|