Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Have make targets follow new conventions #46

Merged
merged 1 commit into from
Feb 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ AWS_PROFILE := default
all: check_venv
pytest

awsci: clean-aws-ci
awsci: check_venv
pytest --cache-clear aws/ --aws-profiles $(AWS_PROFILE) --json=results-$(AWS_PROFILE)-$(TODAY).json

check_venv:
ifeq ($(VIRTUAL_ENV),)
Expand All @@ -21,11 +22,8 @@ clean: clean-cache
clean-cache: check_venv
pytest --cache-clear --aws-profiles $(AWS_PROFILE)

clean-aws-ci:
pytest --cache-clear aws/ --aws-profiles $(AWS_PROFILE) --json=results-$(AWS_PROFILE)-$(TODAY).json

doctest: check_venv
for f in $$(find . -name '*.py' | grep -vP '(venv|test|resources|init)'); do python -m doctest $$f; done
for f in $(shell find . -name '*.py' | grep -vP '(venv|test|resources|init)'); do python -m doctest $$f; done

flake8: check_venv
flake8 --max-line-length 120 $(shell find . -name '*.py' -not -path "./venv/*")
Expand Down