Procházet zdrojové kódy

Makefileadaption for proper status output

master
Dirk Alders před 1 rokem
rodič
revize
9fc738e99e
1 změnil soubory, kde provedl 4 přidání a 3 odebrání
  1. 4
    3
      scripts/Makefile

+ 4
- 3
scripts/Makefile Zobrazit soubor

@@ -37,12 +37,13 @@ venv3:
37 37
 	venv3/bin/pip install -r requirements.txt
38 38
 
39 39
 clean: venv3
40
-	@echo "\033[1;33mCleaning up unittest...\e[0m"
41
-	@echo "\e[1m  * Testresults from last testrun\e[0m"
40
+	@echo -e "\033[1;33mCleaning up unittest...\e[0m"
41
+	@echo -e "\e[1m  * Testresults from last testrun\e[0m"
42 42
 	@ls testresults | xargs -i echo "    testresults/{}"
43 43
 	@ls testresults | xargs -i rm -f "testresults/{}"
44
-	@echo "\e[1m  * Collected coverage information\e[0m"
44
+	@echo -e "\e[1m  * Collected coverage information\e[0m"
45 45
 	@$(COV3_CMD) erase
46
+	@rm -r venv3
46 47
 
47 48
 cleanall: clean
48 49
 	@echo "\e[1m  * Virtualenv\e[0m"

Načítá se…
Zrušit
Uložit