forked from Qiskit/qiskit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
49 lines (37 loc) · 1.33 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
# Copyright 2017, IBM.
#
# This source code is licensed under the Apache License, Version 2.0 found in
# the LICENSE.txt file in the root directory of this source tree.
.PHONY: env lint test test_record test_mock test_ci
# Dependencies need to be installed on the Anaconda virtual environment.
env:
if test $(findstring qiskitenv, $(shell conda info --envs | tr '[:upper:]' '[:lower:]')); then \
bash -c "source activate Qiskitenv;pip install -r requirements.txt"; \
else \
conda create -y -n Qiskitenv python=3; \
bash -c "source activate Qiskitenv;pip install -r requirements.txt"; \
fi;
# Ignoring generated ones with .py extension.
lint:
pylint -rn qiskit test
style:
pycodestyle --max-line-length=100 qiskit test
# Use the -s (starting directory) flag for "unittest discover" is necessary,
# otherwise the QuantumCircuit header will be modified during the discovery.
test:
python3 -m unittest discover -s test -v
test_mock:
env QISKIT_TESTS=mock_online python3 -m unittest discover -s test -v
test_recording:
-rm test/cassettes/*
env QISKIT_TESTS=rec python3 -m unittest discover -s test -v
test_ci:
stestr run --concurrency 2
profile:
python3 -m unittest discover -p "profile*.py" -v
coverage:
coverage3 run --source qiskit -m unittest discover -s test -q
coverage3 report
coverage_erase:
coverage erase
clean: coverage_erase ;