Skip to content

Commit

Permalink
test: improve Makefile; add TestCSStudio.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphlange committed Dec 15, 2021
1 parent 0ce28c9 commit 70976ab
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions testTop/pyTestsApp/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ include $(TOP)/configure/CONFIG
#=============================

# Test programs
PYTESTS += TestCSStudio.py
PYTESTS += TestDBEAlarm.py
PYTESTS += TestDBELog.py
PYTESTS += TestDBEProp.py
Expand Down Expand Up @@ -45,8 +46,10 @@ endif
runtests:
nosetests $(PYTESTS:%=../%)

$(TAPFILES): Test%.tap: ../Test%.py
nosetests --with-tap $<
$(TAPFILES): .runtests.tap ;
.INTERMEDIATE: .runtests.tap
.runtests.tap:
nosetests --with-tap $(PYTESTS:%=../%)

# Workaround for 3.14 make rules: special target to avoid circular dependencies
build runtests tapfiles: testfiles pvlist.txt
Expand Down

0 comments on commit 70976ab

Please sign in to comment.