From 2ac52574a5102d658b1c442574426927b340d8a9 Mon Sep 17 00:00:00 2001 From: Martin Bornhold Date: Tue, 11 Oct 2016 14:21:25 +0200 Subject: [PATCH] dev-env: Remove flake8 target from makefile. We previously removed flake8 from our development environment. This is a follow up which removes it also from the makefile. --- Makefile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Makefile b/Makefile index 931838d7..6152e473 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ WEBPACK=./node_modules/webpack/bin/webpack.js GRUNT=grunt NODE_PATH=./node_modules -FLAKE8=flake8 setup.py pytest_pylons/ rhodecode/ --select=E124 --ignore=E711,E712,E510,E121,E122,E126,E127,E128,E501,F401 --max-line-length=100 --exclude=*rhodecode/lib/dbmigrate/*,*rhodecode/tests/*,*rhodecode/lib/vcs/utils/* CI_PREFIX=enterprise .PHONY: docs docs-clean ci-docs clean test test-clean test-lint test-only @@ -25,13 +24,6 @@ test: test-clean test-only test-clean: rm -rf coverage.xml htmlcov junit.xml pylint.log result -test-lint: - if [ "$$IN_NIX_SHELL" = "1" ]; then \ - $(FLAKE8); \ - else \ - $(FLAKE8) --format=pylint --exit-zero > pylint.log; \ - fi - test-only: PYTHONHASHSEED=random py.test -vv -r xw --cov=rhodecode --cov-report=term-missing --cov-report=html rhodecode/tests/