From 5ca9e8924c1d7f79560b1ecb5e2b24c8323d5183 Mon Sep 17 00:00:00 2001 From: Pedro Rivero Date: Mon, 18 Apr 2022 11:47:13 -0400 Subject: [PATCH 1/4] Clean gitignore --- .gitignore | 62 ++++++++++++++++++++++++++++++------------------------ 1 file changed, 35 insertions(+), 27 deletions(-) diff --git a/.gitignore b/.gitignore index a566991..e2ec898 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,43 @@ +# MISC .ipynb_checkpoints __pycache__ .DS_Store -venv/ + +# IDEs .idea/ .vscode/ -# Distribution / packaging + +# VIRTUAL ENVIRONMENTS +venv/ +.venv/ +## [pyenv] +.python-version +## [dotenv] +.env +## [virtualenv] +ENV/ + + +# UNIT TEST / COVERAGE REPORTS +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover +.hypothesis/ + + +# SPHINX DOCUMENTATION +docs/_build/ +docs/stubs/ + + +# DISTRIBUTION / PACKAGING .Python env/ build/ @@ -24,30 +55,7 @@ var/ .installed.cfg *.egg -# Installer logs + +# INSTALLER LOGS pip-log.txt pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*,cover -.hypothesis/ - -# pyenv -.python-version - -# dotenv -.env - -# virtualenv -ENV/ - -# Sphinx documentation -docs/_build/ -docs/stubs/ From f0d48ad6d00e89457f851b636b515b8359a5368c Mon Sep 17 00:00:00 2001 From: Pedro Rivero Date: Thu, 21 Apr 2022 11:43:25 -0500 Subject: [PATCH 2/4] Add coverage-html to gitignore --- .gitignore | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e2ec898..760dcb8 100644 --- a/.gitignore +++ b/.gitignore @@ -21,14 +21,15 @@ ENV/ # UNIT TEST / COVERAGE REPORTS -htmlcov/ .tox/ .coverage .coverage.* -.cache -nosetests.xml +htmlcov/ +coverage-html/ coverage.xml *,cover +.cache +nosetests.xml .hypothesis/ From 574556d0f926abf721342621bc6eca88db6fda77 Mon Sep 17 00:00:00 2001 From: Pedro Rivero Date: Thu, 21 Apr 2022 15:05:48 -0500 Subject: [PATCH 3/4] Add .pytest_cache to gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 760dcb8..ac9e354 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,7 @@ coverage-html/ coverage.xml *,cover .cache +.pytest_cache/ nosetests.xml .hypothesis/ From 5ee9e39afd16d52db1d611e3c21fecf9e097a8d4 Mon Sep 17 00:00:00 2001 From: Pedro Rivero Date: Fri, 22 Apr 2022 18:16:28 -0500 Subject: [PATCH 4/4] Add .*cache to gitignore --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ac9e354..0319d29 100644 --- a/.gitignore +++ b/.gitignore @@ -28,8 +28,7 @@ htmlcov/ coverage-html/ coverage.xml *,cover -.cache -.pytest_cache/ +.*cache nosetests.xml .hypothesis/