Repository: kudu Updated Branches: refs/heads/master cdc73b900 -> 29e795d58
[python] Ignore pytest cache and environment files Change-Id: Id77fd8fad9ca0029778dda524d7aae4a339f230d Reviewed-on: http://gerrit.cloudera.org:8080/9491 Tested-by: Kudu Jenkins Reviewed-by: Adar Dembo <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/f81690d7 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/f81690d7 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/f81690d7 Branch: refs/heads/master Commit: f81690d76a4ab8a20829be664f6dce4084e2320d Parents: cdc73b9 Author: Grant Henke <[email protected]> Authored: Mon Mar 5 10:48:37 2018 -0600 Committer: Grant Henke <[email protected]> Committed: Mon Mar 5 18:09:51 2018 +0000 ---------------------------------------------------------------------- python/.gitignore | 10 ++++++++++ 1 file changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/f81690d7/python/.gitignore ---------------------------------------------------------------------- diff --git a/python/.gitignore b/python/.gitignore index 4615a32..ba75271 100644 --- a/python/.gitignore +++ b/python/.gitignore @@ -28,6 +28,7 @@ __pycache__ .eggs *.egg MANIFEST +.pytest_cache/ # Generated sources *.c @@ -45,6 +46,15 @@ dist .coverage coverage.xml +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + # other distribution/packaging directories env/ develop-eggs/
