This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/Makefile

36 lines
781 B
Makefile
Raw Normal View History

all: lint-fix lint test gen
2020-09-02 22:04:12 +00:00
test-integration:
k3d cluster create || exit 0
k3d kubeconfig write -o ~/.kube/config --overwrite
2021-02-26 14:39:50 +00:00
coverage run manage.py test -v 3 tests/integration
test-e2e:
coverage run manage.py test --failfast -v 3 tests/e2e
test:
2021-02-26 14:39:50 +00:00
coverage run manage.py test -v 3 authentik
2020-09-02 22:04:12 +00:00
coverage html
coverage report
lint-fix:
isort authentik tests lifecycle
2020-12-05 21:08:42 +00:00
black authentik tests lifecycle
2020-09-02 22:04:12 +00:00
lint:
2020-12-05 21:08:42 +00:00
pyright authentik tests lifecycle
bandit -r authentik tests lifecycle -x node_modules
pylint authentik tests lifecycle
2020-09-02 22:04:12 +00:00
gen:
2020-09-02 22:04:12 +00:00
./manage.py generate_swagger -o swagger.yaml -f yaml
local-stack:
2020-12-05 21:08:42 +00:00
export AUTHENTIK_TAG=testing
docker build -t beryju/authentik:testng .
docker-compose up -d
docker-compose run --rm server migrate
run:
go run -v cmd/server/main.go