mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-04 20:51:27 +00:00
There is no reason to number these tests as bat does not respect the numbering system and it was obnoxious to try to keep collisions from happening and keep the descriptions up-to-date. Signed-off-by: Matthew Johnson <matthew.johnson@intel.com>
10 lines
431 B
Makefile
Executable File
10 lines
431 B
Makefile
Executable File
.PHONY: check clean
|
|
|
|
check:
|
|
bats ./run.bats
|
|
|
|
CLEANDIRS = ./update ./test-chroot ./logs ./.repos ./bundles ./update ./mix-bundles ./clr-bundles ./local-yum ./results ./repodata ./local-rpms ./upstream-bundles ./local-bundles
|
|
CLEANFILES = ./*.log ./run.bats.trs ./yum.conf.in ./builder.conf ./mixer.state ./.{c,m}* *.pem .yum-mix.conf mixversion upstreamurl upstreamversion mixbundles
|
|
clean:
|
|
sudo rm -rf $(CLEANDIRS) $(CLEANFILES)
|