mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-16 15:01:28 +00:00
5 lines
265 B
Bash
Executable File
5 lines
265 B
Bash
Executable File
#!/usr/bin/env bash
|
|
pytest --cov --cov-report html
|
|
echo "Starting web server to present the coverage report. Visit at http://localhost:8000. Press 'Ctrl' + 'C' to exit."
|
|
python -m http.server 8000 --bind 127.0.0.1 --directory htmlcov 2>&1 | grep -v "GET /.* 200 -"
|