From d7235f51614bd34c76089eadbf1f0fe9209b40af Mon Sep 17 00:00:00 2001 From: Vit Pavlik Date: Tue, 18 Apr 2023 20:55:13 +0200 Subject: [PATCH] remove the test from makefile --- Makefile_test | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Makefile_test diff --git a/Makefile_test b/Makefile_test new file mode 100644 index 0000000..9ff8718 --- /dev/null +++ b/Makefile_test @@ -0,0 +1,30 @@ +# obsah tohoto souboru vlozit na konec makefilu abych mohl spoustet svoje +# testy - je to tady zvlast abych to neodevzdaval + +# START_test_only +PYTHON=python3 +# STOP_test_only + +# START_test_only +test: test_tail test_wordcount +# STOP_test_only + +# START_test_only +test_tail: tail + $(PYTHON) tests/test_tail.py +# STOP_test_only + +# START_test_only +# to tady mam abych to co vyvijim u sebe ve sve projektove slozce za testy +# abych to akorat mohl prcnout na github +copytests: + cp -a ./tests/. ../projekt_ii_tests/IJC_project2_tests/ +# toto je neco jako gitignore lol + rm -f -r ../projekt_ii_tests/IJC_project2_tests/__pycache__ + rm -f ../projekt_ii_tests/IJC_project2_tests/tmp.py +# STOP_test_only + +# START_test_only +test_wordcount: wordcount wordcount-dynamic + $(PYTHON) tests/test_wordcount.py +# STOP_test_only \ No newline at end of file