From cab87fe55a86c794a626922dbaa273e78acf5016 Mon Sep 17 00:00:00 2001 From: Jack <jmaxfiel@caltech.edu> Date: Sun, 12 Apr 2020 21:45:30 -0400 Subject: [PATCH] Fix test target --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ca927d8..ea52337 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ lz77 : include/bitwriter.h include/hashmap.h include/lz77.h src/lz77/bitwriter.c myzip : include/bitwriter.h include/hashmap.h include/lz77.h src/lz77/bitwriter.c src/lz77/hashmap.c src/lz77/lz77.c src/myzip/myzip.c cc -I include src/lz77/lz77.c src/lz77/hashmap.c src/lz77/bitwriter.c src/myzip/myzip.c -o myzip -test : +test : all python3 -m unittest discover tests -p 'test_*.py' clean : -- GitLab