mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-10 01:30:19 +00:00
cd8a0ea690
[no changelog]
22 lines
361 B
Makefile
22 lines
361 B
Makefile
.PHONY: tests
|
|
|
|
export ASAN_OPTIONS=verify_asan_link_order=0
|
|
|
|
build:
|
|
$(MAKE) -C c
|
|
$(MAKE) -C c libtrezor-storage-qw.so
|
|
$(MAKE) -C c0
|
|
$(MAKE) -C c3
|
|
|
|
clean:
|
|
$(MAKE) -C c clean
|
|
$(MAKE) -C c0 clean
|
|
$(MAKE) -C c3 clean
|
|
|
|
## tests commands:
|
|
tests:
|
|
pytest --junitxml=../../tests/junit.xml -k "not hypothesis"
|
|
|
|
tests_all:
|
|
pytest --junitxml=../../tests/junit.xml
|