mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- Implement coverage functionality as a setuptools Command subclass (in plinth/tests/coverage/test_coverage.py) - Register the new 'test_coverage' command in setup.py - Modify the INSTALL file to specify python3-coverage as a new dependency - Modify the HACKING file to document the new 'test_coverage' command - Have git (via .gitignore) ignore the '.coverage' output data file and the contents of the 'plinth/tests/coverage/report' directory
33 lines
409 B
Plaintext
33 lines
409 B
Plaintext
*.pyc
|
|
*.py.bak
|
|
*.swp
|
|
*.tiny.css
|
|
data/var/log/plinth/*.log
|
|
data/var/lib/plinth/*.sqlite3
|
|
data/var/lib/plinth/sessions/*
|
|
data/var/run/*.pid
|
|
doc/*.tex
|
|
doc/*.pdf
|
|
doc/*.html
|
|
doc/*.aux
|
|
doc/*.toc
|
|
doc/*.log
|
|
doc/*.out
|
|
doc/COPYING.mdwn
|
|
doc/INSTALL.mdwn
|
|
doc/README.mdwn
|
|
doc/TODO.mdwn
|
|
doc/oneline.txt
|
|
doc/plinth.1
|
|
TODO
|
|
\#*
|
|
.#*
|
|
*~
|
|
predepend
|
|
build/
|
|
.emacs.desktop*
|
|
*.egg-info/
|
|
dist/
|
|
.coverage
|
|
plinth/tests/coverage/report/
|