2020-09-02 22:04:12 +00:00
|
|
|
all: lint-fix lint coverage gen
|
|
|
|
|
2020-11-19 13:25:53 +00:00
|
|
|
test-integration:
|
|
|
|
k3d cluster create || exit 0
|
|
|
|
k3d kubeconfig write -o ~/.kube/config --overwrite
|
|
|
|
coverage run manage.py test --failfast -v 3 tests/integration
|
|
|
|
|
|
|
|
test-e2e:
|
|
|
|
coverage run manage.py test --failfast -v 3 tests/e2e
|
|
|
|
|
2020-09-02 22:04:12 +00:00
|
|
|
coverage:
|
2020-11-19 13:25:53 +00:00
|
|
|
coverage run manage.py test --failfast -v 3 passbook
|
2020-09-02 22:04:12 +00:00
|
|
|
coverage html
|
|
|
|
coverage report
|
|
|
|
|
|
|
|
lint-fix:
|
|
|
|
isort -rc .
|
2020-11-19 13:25:53 +00:00
|
|
|
black passbook tests lifecycle
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
lint:
|
2020-11-19 13:25:53 +00:00
|
|
|
pyright passbook tests lifecycle
|
|
|
|
bandit -r passbook tests lifecycle -x node_modules
|
|
|
|
pylint passbook tests lifecycle
|
2020-09-26 17:17:42 +00:00
|
|
|
prospector
|
2020-09-02 22:04:12 +00:00
|
|
|
|
|
|
|
gen: coverage
|
|
|
|
./manage.py generate_swagger -o swagger.yaml -f yaml
|
2020-09-10 14:58:25 +00:00
|
|
|
|
|
|
|
local-stack:
|
|
|
|
export PASSBOOK_TAG=testing
|
|
|
|
docker build -t beryju/passbook:testng .
|
|
|
|
docker-compose up -d
|
|
|
|
docker-compose run --rm server migrate
|