forked from gooddata/gooddata-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_common.mk
More file actions
64 lines (49 loc) · 1.56 KB
/
project_common.mk
File metadata and controls
64 lines (49 loc) · 1.56 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
59
60
61
62
63
64
# (C) 2021 GoodData Corporation
TOX_FLAGS =
ifeq (1,$(RECREATE_ENVS))
TOX_FLAGS += -r
endif
LOCAL_TEST_ENVS =
ifdef TEST_ENVS
LOCAL_TEST_ENVS := -e $(TEST_ENVS)
endif
LOCAL_ADD_ARGS =
ifdef ADD_ARGS
LOCAL_ADD_ARGS := -- $(ADD_ARGS)
endif
# linting and formatting tools have configuration in root dir to support pre-commit - use it
# ruff uses root directory to have the same per-file-ignores config parameter for all packages
CURR_DIR_BASE_NAME = $(notdir $(CURDIR))
.PHONY: all
all:
echo "Nothing here yet."
.PHONY: format
format:
(cd ../..; .venv/bin/ruff format --check packages/$(CURR_DIR_BASE_NAME))
.PHONY: format-diff
format-diff:
(cd ../..; .venv/bin/ruff format --diff packages/$(CURR_DIR_BASE_NAME))
.PHONY: format-fix
format-fix:
(cd ../..; .venv/bin/ruff format packages/$(CURR_DIR_BASE_NAME))
(cd ../..; .venv/bin/ruff check --fix packages/$(CURR_DIR_BASE_NAME))
.PHONY: mypy
mypy:
uv run tox $(TOX_FLAGS) -e mypy
.PHONY: types
types: mypy
.PHONY: test
test:
uv run tox -v $(TOX_FLAGS) $(LOCAL_TEST_ENVS) $(LOCAL_ADD_ARGS)
.PHONY: test-ci
test-ci:
TEST_CI_PROJECT=$(CURR_DIR_BASE_NAME) $(MAKE) -C ../.. -f ci_tests.mk test-ci
# this is effective for gooddata-sdk only now - it should be part of test fixtures
# remove this target once implemented in pytest global fixture
.PHONY: remove-store-data
remove-store-data:
echo "Removing directory $(CURDIR)/tests/catalog/store"
rm -rf $(CURDIR)/tests/catalog/store
.PHONY: remove-cassettes
remove-cassettes: remove-store-data
find $(CURDIR)/tests -type f -name "*.yaml" -path "*/fixtures/*" -print -delete