-
Notifications
You must be signed in to change notification settings - Fork 58
/
Makefile
85 lines (65 loc) · 2.21 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
77
78
79
80
81
82
83
84
85
# This code is part of a Qiskit project.
#
# (C) Copyright IBM 2021, 2023.
#
# This code is licensed under the Apache License, Version 2.0. You may
# obtain a copy of this license in the LICENSE.txt file in the root directory
# of this source tree or at http://www.apache.org/licenses/LICENSE-2.0.
#
# Any modifications or derivative works of this code must retain this
# copyright notice, and modified files need to carry a notice indicating
# that they have been altered from the originals.
OS := $(shell uname -s)
ifeq ($(OS), Linux)
NPROCS := $(shell grep -c ^processor /proc/cpuinfo)
else ifeq ($(OS), Darwin)
NPROCS := 2
else
NPROCS := 0
endif # $(OS)
ifeq ($(NPROCS), 2)
CONCURRENCY := 2
else ifeq ($(NPROCS), 1)
CONCURRENCY := 1
else ifeq ($(NPROCS), 3)
CONCURRENCY := 3
else ifeq ($(NPROCS), 0)
CONCURRENCY := 0
else
CONCURRENCY := $(shell echo "$(NPROCS) 2" | awk '{printf "%.0f", $$1 / $$2}')
endif
# You can set this variable from the command line.
SPHINXOPTS =
.PHONY: lint mypy style black test test_ci spell copyright html doctest clean_sphinx coverage clean
all_check: spell style lint copyright mypy clean_sphinx html doctest
lint:
pylint -rn qiskit_algorithms test tools
python tools/verify_headers.py qiskit_algorithms test tools
mypy:
python -m mypy qiskit_algorithms test tools
style:
python -m black --check qiskit_algorithms test tools docs
black:
python -m black qiskit_algorithms test tools docs
test:
python -m unittest discover -v test
test_ci:
echo "Detected $(NPROCS) CPUs running with $(CONCURRENCY) workers"
python -m stestr run --concurrency $(CONCURRENCY)
spell:
python -m pylint -rn --disable=all --enable=spelling --spelling-dict=en_US qiskit_algorithms test tools
sphinx-build -M spelling docs docs/_build -W -T --keep-going $(SPHINXOPTS)
copyright:
python tools/check_copyright.py
html:
sphinx-build -M html docs docs/_build -W -T --keep-going $(SPHINXOPTS)
doctest:
sphinx-build -M doctest docs docs/_build -W -T --keep-going $(SPHINXOPTS)
clean_sphinx:
make -C docs clean
coverage:
python -m coverage3 run --source qiskit_algorithms -m unittest discover -s test -q
python -m coverage3 report
coverage_erase:
python -m coverage erase
clean: clean_sphinx coverage_erase;