Update of /cvsroot/happydoc/HappyDoc3
In directory sc8-pr-cvs1:/tmp/cvs-serv28668
Modified Files:
Makefile
Log Message:
Allow testing by proctor category.
Ignore directories that look like python files whenm making tags file.
Index: Makefile
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc3/Makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Makefile 15 Mar 2003 14:25:09 -0000 1.1
--- Makefile 16 Mar 2003 16:23:55 -0000 1.2
***************
*** 30,36 ****
PROCTOR_VERBOSITY="-vvv"
PROCTOR_ARGS="--interleaved"
! REGRESSION_TEST=$(PROCTOR) $(PROCTOR_VERBOSITY) $(PROCTOR_ARGS) . 2>&1 | tee test_output.txt
tags:
! find . -name '*.py' | grep -v TestCase | etags -l auto --regex='/[ \t]*\def[ \t]+\([^ :(\t]+\)/\1/' -
--- 30,37 ----
PROCTOR_VERBOSITY="-vvv"
PROCTOR_ARGS="--interleaved"
+ TEST_CATEGORY="All"
! REGRESSION_TEST=$(PROCTOR) --category $(TEST_CATEGORY) $(PROCTOR_VERBOSITY) $(PROCTOR_ARGS) . 2>&1 | tee test_output.txt
tags:
! find . -name '*.py' -type f | grep -v TestCase | etags -l auto --regex='/[ \t]*\def[ \t]+\([^ :(\t]+\)/\1/' -
|