diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2017-10-17 07:37:05 -0400 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2017-10-17 07:37:05 -0400 |
| commit | 00bf2f8272a1a61619314b3038318af89db86eea (patch) | |
| tree | 66372f1f895d98c8c1ea672a65987c07ec14ff24 | |
| parent | e8e5b0919d07c1532b2ee3ab2bc55da7b401f620 (diff) | |
| download | python-coveragepy-git-00bf2f8272a1a61619314b3038318af89db86eea.tar.gz | |
Ignoring hypothesis results, and in git repos
| -rw-r--r-- | .gitignore | 40 | ||||
| -rw-r--r-- | .hgignore | 1 |
2 files changed, 41 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..74520d51 --- /dev/null +++ b/.gitignore @@ -0,0 +1,40 @@ +# Files that can appear anywhere in the tree. +*.pyc +*.pyo +*$py.class +*.pyd +*.so +*.bak +.coverage +.coverage.* +coverage.xml +.metacov +.metacov.* +*.swp + +# Stuff generated by editors. +.idea/ +.vimtags + +# Stuff in the root. +build +*.egg-info +dist +htmlcov +MANIFEST +setuptools-*.egg +.tox* +.noseids +.cache +.hypothesis + +# Stuff in the test directory. +zipmods.zip + +# Stuff in the doc directory. +_build +_spell +sample_html_beta + +# Stuff in the ci directory. +*.token @@ -28,6 +28,7 @@ setuptools-*.egg .tox* .noseids .cache +.hypothesis # Stuff in the test directory. zipmods.zip |
