1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 05:49:11 +00:00
trezor-firmware/storage/tests/Makefile
Andrew Kozlik 56126b75a7 ci: Use address sanitizer in CI.
[no changelog]
2022-01-19 15:22:03 +01:00

19 lines
287 B
Makefile

.PHONY: tests
export ASAN_OPTIONS=verify_asan_link_order=0
build:
$(MAKE) -C c
$(MAKE) -C c0
clean:
$(MAKE) -C c clean
$(MAKE) -C c0 clean
## tests commands:
tests:
pytest --junitxml=../../tests/junit.xml -k "not hypothesis"
tests_all:
pytest --junitxml=../../tests/junit.xml