5 lines
99 B
Bash
5 lines
99 B
Bash
#!/usr/bin/env bash
|
|
coverage run --source='.' manage.py test
|
|
coverage html
|
|
open htmlcov/index.html
|