-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DXE-4304 Merge pull request #69 from akamai/release/v2.0.0
v2.0.0
- Loading branch information
Showing
21 changed files
with
1,402 additions
and
873 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
PYTHON = python3 | ||
|
||
.PHONY: help | ||
help: | ||
@echo " install install all dev and production dependencies (virtualenv is created as venv)" | ||
@echo " clean remove unwanted stuff" | ||
@echo " test run tests" | ||
|
||
.PHONY: install | ||
install: | ||
$(PYTHON) -m venv venv; . venv/bin/activate; python -m pip install -r dev-requirements.txt | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -fr test | ||
rm -fr venv | ||
|
||
.PHONY: test | ||
test: | ||
@. venv/bin/activate; pytest --junitxml $(CURDIR)/test/tests.xml --cov-report xml:$(CURDIR)/test/coverage/cobertura-coverage.xml --cov=akamai | ||
|
||
.PHONY: lint | ||
lint: | ||
@. venv/bin/activate; pylint ./akamai | ||
|
||
.PHONY: all | ||
all: clean install test lint |
Oops, something went wrong.