mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
58a44cb100
Added code coverage outputs genereated by coverage.py to .gitignore . To generate code coverage report, run this command: coverage run tests/runtests.py To produce HTML coverage repot (`htmlcov/index.html`): coverage html --omit=tests/* To produce Cobertura compliant XML for Jenkins: coverage xml --omit=tests/*
30 lines
491 B
Plaintext
30 lines
491 B
Plaintext
build
|
|
*.py[co]
|
|
pkg/arch/*.tar.xz
|
|
*.swp
|
|
doc/_build
|
|
dist
|
|
MANIFEST
|
|
|
|
# virtualenv
|
|
# - ignores directories of a virtualenv when you create it right on
|
|
# top of salt such as
|
|
# - /some/path$ git clone https://github.com/thatch45/salt.git
|
|
# - /some/path$ virtualenv --python=/usr/bin/python2.6 salt
|
|
bin/
|
|
include/
|
|
lib/
|
|
pip/
|
|
share/
|
|
|
|
# tox - ignore any tox-created virtualenv dirs
|
|
.tox
|
|
|
|
# setuptools stuff
|
|
*.egg-info
|
|
|
|
# code coverage outputs genereated by coverage.py
|
|
.coverage
|
|
coverage.xml
|
|
htmlcov/
|