EC_TESTS = ec.test_context ec.test_configuration ec.test_curve ec.test_formula \ ec.test_params ec.test_key_agreement ec.test_key_generation ec.test_mod ec.test_model \ ec.test_mult ec.test_naf ec.test_op ec.test_point ec.test_signature ec.test_transformations ec.test_regress SCA_TESTS = sca.test_align sca.test_combine sca.test_edit sca.test_filter sca.test_match sca.test_process \ sca.test_sampling sca.test_target sca.test_test sca.test_trace sca.test_traceset sca.test_plot sca.test_rpa TESTS = ${EC_TESTS} ${SCA_TESTS} PERF_SCRIPTS = test.ec.perf_mod test.ec.perf_formula test.ec.perf_mult test.sca.perf_combine test: nose2 -s test -E "not slow and not disabled" -C -v ${TESTS} test-plots: env PYECSCA_TEST_PLOTS=1 nose2 -s test -E "not slow and not disabled" -C -v ${TESTS} test-all: nose2 -s test -C -v ${TESTS} typecheck: mypy pyecsca --ignore-missing-imports --show-error-codes typecheck-all: mypy pyecsca test --ignore-missing-imports --show-error-codes codestyle: flake8 --extend-ignore=E501,F405,F403,F401,E126,E203 pyecsca codestyle-all: flake8 --extend-ignore=E501,F405,F403,F401,E126,E203 pyecsca test docstyle: pydocstyle pyecsca --ignore=D1,D203,D212 -e --count black: black --exclude pyecsca/ec/{std,efd} pyecsca black-all: black --exclude pyecsca/ec/{std,efd} pyecsca test perf: mkdir -p .perf echo ${PERF_SCRIPTS}| env DIR=".perf" xargs -n 1 python -m perf-plots: python test/plots/plot_perf.py -d .perf doc-coverage: interrogate -vv -nmps -e pyecsca/ec/std/.github/ -f 55 pyecsca docs: $(MAKE) -C docs apidoc $(MAKE) -C docs html help: @echo "pyecsca, Python Elliptic Curve cryptography Side-Channel Analysis toolkit." @echo @echo "Available targets:" @echo " - test: Test pyecsca." @echo " - test-plots: Test pyecsca and produce debugging plots." @echo " - test-all: Test pyecsca but also run slow (and disabled) tests." @echo " - typecheck: Use mypy to verify the use of types in pyecsca." @echo " - typecheck-all: Use mypy to verify the use of types in pyecsca and in tests." @echo " - codestyle: Use flake8 to check codestyle in pyecsca." @echo " - codestyle-all: Use flake8 to check codestyle in pyecsca and in tests." @echo " - docstyle: Use pydocstyle to check format of docstrings." @echo " - black: Run black on pyecsca sources (will transform them inplace)." @echo " - black-all: Run black on pyecsca sources and tests (will transform them inplace)." @echo " - perf: Run performance measurements (prints results and stores them in .perf/)." @echo " - perf-plots: Plot performance measurements (stores the plots in .perf/)." @echo " - doc-coverage: Use interrogate to check documentation coverage of public API." @echo " - docs: Build docs using sphinx." @echo " - help: Show this help." .PHONY: test test-plots test-all typecheck typecheck-all codestyle codestyle-all docstyle black black-all perf doc-coverage docs