salt/.gitignore
Baiju Muthukadan 58a44cb100 ignore code coverage outputs
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/*
2012-05-07 17:08:48 +05:30

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/