From 0e10f7ced903dfe193c9810d16f9792475a95d28 Mon Sep 17 00:00:00 2001 From: Jan Harkes Date: Tue, 12 Apr 2016 14:56:14 -0400 Subject: [PATCH] Ignore tests/config/deps/ for both git and flake8. Sometimes py.test leave some packages around in tests/config/deps. Make sure these do not accidentally get pulled into a commit or cause a local tox run to fail. --- .gitignore | 1 + setup.cfg | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e7d64517e17..5a3fa9649c0 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,7 @@ config/custom_components/* !config/custom_components/hello_world.py !config/custom_components/mqtt_example.py +tests/config/deps tests/config/home-assistant.log # Hide sublime text stuff diff --git a/setup.cfg b/setup.cfg index a9a21de8388..2333efe6e70 100644 --- a/setup.cfg +++ b/setup.cfg @@ -5,4 +5,4 @@ universal = 1 testpaths = tests [flake8] -exclude = .venv,.git,.tox,docs,www_static,venv,bin,lib +exclude = .venv,.git,.tox,docs,www_static,venv,bin,lib,deps