~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/Makefile

  • Committer: Aaron Bentley
  • Date: 2005-06-07 18:52:04 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050607185204-5fc1f0e3d393b909
Added NEWS, obsoleted bzr-pull

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
PYTHONPATH=$(PWD)
3
 
 
4
 
all:
5
 
 
6
 
build:
7
 
 
8
 
doc:
9
 
        rm -rf html
10
 
        ./mypydoc --docformat "restructuredtext en" arch
11
 
 
12
 
check: check-arch check-twisted
13
 
 
14
 
check-arch:
15
 
        PYTHONPATH=$(PYTHONPATH) ./run-tests
16
 
 
17
 
.PHONY: all build doc check check-arch
18
 
 
19
 
ifeq ($(TERM),dumb)
20
 
    TRIAL := trial -o
21
 
else
22
 
    TRIAL := trial -v
23
 
endif
24
 
 
25
 
check-twisted:
26
 
        PYTHONPATH=$(PYTHONPATH) $(TRIAL) arch.tests.test_twisted
27
 
 
28
 
check-twisted-arch:
29
 
        PYTHONPATH=$(PYTHONPATH) $(TRIAL) arch.tests.test_twisted_arch
30
 
 
31
 
.PHONY: check-twisted check-twisted-arch