From f1ffd99789cf90d548e997d484fdb05a4e369e54 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Tue, 17 Oct 2017 07:37:05 -0400 Subject: Ignoring hypothesis results, and in git repos --- .gitignore | 40 ++++++++++++++++++++++++++++++++++++++++ .hgignore | 1 + 2 files changed, 41 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..74520d5 --- /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 diff --git a/.hgignore b/.hgignore index 700b12f..ce114b1 100644 --- a/.hgignore +++ b/.hgignore @@ -28,6 +28,7 @@ setuptools-*.egg .tox* .noseids .cache +.hypothesis # Stuff in the test directory. zipmods.zip -- cgit v1.2.1