-
Notifications
You must be signed in to change notification settings - Fork 321
/
Copy pathMakefile
77 lines (63 loc) · 2.28 KB
/
Makefile
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
65
66
67
68
69
70
71
72
73
74
75
76
# Makefile for running tests on the python code here
# These variables can be overridden from the command-line
python = not-set
verbose = not-set
debug = not-set
ifneq ($(python), not-set)
PYTHON=$(python)
else
PYTHON=python3
endif
ifneq ($(debug), not-set)
TEST_ARGS+=--debug
endif
ifneq ($(verbose), not-set)
TEST_ARGS+=--verbose
endif
PYLINT=pylint
PYLINT_ARGS=-j 4 --rcfile=ctsm/.pylintrc --fail-under=0
PYLINT_SRC = \
ctsm
# NOTE: These don't pass pylint checking and should be added when we put into effort to get them to pass
# ../cime_config/SystemTests \
# ../cime_config/buildlib \
# ../cime_config/buildnml
all: test black lint
# ----------------------------------------------------------------
# See the stest target about this issue
@echo "Run './run_ctsm_py_tests --sys' by hand afterwards"
# ----------------------------------------------------------------
@echo
@echo
@echo "Successfully ran all standard tests"
test: utest stest
.PHONY: utest
utest: FORCE
$(PYTHON) ./run_ctsm_py_tests $(TEST_ARGS) --unit
.PHONY: stest
stest: FORCE
# ----------------------------------------------------------------
# EBK 2024-03-19: Comment out running here because of this issue:
# https://github.com/ESCOMP/CTSM/pull/2363#issuecomment-1967884908
#$(PYTHON) ./run_ctsm_py_tests $(TEST_ARGS) --sys
# Instead run by hand which seems to be working for now...
# ----------------------------------------------------------------
@echo "System tests currently don't run under Make so..."
@echo "Run './run_ctsm_py_tests --sys' by hand afterwards"
.PHONY: lint
lint: FORCE
$(PYLINT) $(PYLINT_ARGS) $(PYLINT_SRC)
.PHONY: black
# Run the black check on all of the python files here and undeneath.
# Use the black configure file to explicitly set a few things and specifiy the exact files.
black: FORCE
black --check --config pyproject.toml . ../cime_config/SystemTests ../cime_config/buildlib ../cime_config/buildnml
.PHONY: run_black
# Run black on all of the python files here and undeneath.
# Use the black configure file to explicitly set a few things and specifiy the exact files.
run_black: FORCE
black --config pyproject.toml . ../cime_config/SystemTests ../cime_config/buildlib ../cime_config/buildnml
.PHONY: clean
clean: FORCE
find . -name '*.pyc' -exec rm {} \;
FORCE: