aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
-rw-r--r--setup.cfg4
2 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 524c5fc..71c8553 100644
--- a/Makefile
+++ b/Makefile
@@ -36,11 +36,7 @@ install: youtube-dl youtube-dl.1 youtube-dl.bash-completion youtube-dl.zsh youtu
install -m 644 youtube-dl.fish $(DESTDIR)$(SYSCONFDIR)/fish/completions/youtube-dl.fish
codetest:
- FLAKE8_OUT=$$(flake8 --ignore E501 . | grep -v youtube_dl/extractor/__init__.py); \
- if test -n "$$FLAKE8_OUT"; then \
- echo "$$FLAKE8_OUT"; \
- exit 1; \
- fi
+ flake8 .
test:
#nosetests --with-coverage --cover-package=youtube_dl --cover-html --verbose --processes 4 test
diff --git a/setup.cfg b/setup.cfg
index e57d130..8659b50 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,2 +1,6 @@
[wheel]
universal = True
+
+[flake8]
+exclude = youtube_dl/extractor/__init__.py
+ignore = E501