-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
58 lines (42 loc) · 1.36 KB
/
Makefile
File metadata and controls
58 lines (42 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
SHELL=/bin/bash -euo pipefail
install-python:
poetry install
install-node:
npm install --legacy-peer-deps
# cd sandbox && npm install
.git/hooks/pre-commit:
cp scripts/pre-commit .git/hooks/pre-commit
install: install-node install-python .git/hooks/pre-commit
lint:
npm run lint
find . -name '*.py' -not -path '**/.venv/*' | xargs poetry run flake8
clean:
rm -rf build
rm -rf dist
publish: clean
mkdir -p build
npm run publish 2> /dev/null
serve:
npm run serve
check-licenses:
npm run check-licenses
scripts/check_python_licenses.sh
format:
poetry run black **/*.py
#start-sandbox:
# cd sandbox && npm run start
build-proxy:
scripts/build_proxy.sh
_dist_include="pytest.ini poetry.lock poetry.toml pyproject.toml Makefile build/. tests"
release: clean publish build-proxy
mkdir -p dist
for f in $(_dist_include); do cp -r $$f dist; done
# cp ecs-proxies-deploy.yml dist/ecs-deploy-sandbox.yml
# cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-qa-sandbox.yml
# cp ecs-proxies-deploy.yml dist/ecs-deploy-internal-dev-sandbox.yml
test:
# this target should be used for local unit tests .. runs as part of the build pipeline
# make --no-print-directory -C sandbox test
smoketest:
# this target is for end to end smoketests this would be run 'post deploy' to verify an environment is working
poetry run pytest -v --junitxml=smoketest-report.xml -s -m smoketest