blob: b66548fed2ea97b8d3bb47f98a71da4625ea4a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# Makefile for utility work on Coverage.
default:
@echo "* No default action *"
TEST_ZIP = test/zipmods.zip
clean:
python test/test_farm.py clean
-rm -rf build
-rm -rf coverage.egg-info
-rm -rf dist
-rm -rf htmlcov
-rm -f *.pyd */*.pyd
-rm -f *.pyc */*.pyc */*/*.pyc */*/*/*.pyc */*/*/*/*.pyc */*/*/*/*/*.pyc
-rm -f *.pyo */*.pyo */*/*.pyo */*/*/*.pyo */*/*/*/*.pyo */*/*/*/*/*.pyo
-rm -f *.bak */*.bak */*/*.bak */*/*/*.bak */*/*/*/*.bak */*/*/*/*/*.bak
-rm -f coverage/*,cover
-rm -f MANIFEST
-rm -f .coverage .coverage.*
-rm -f $(TEST_ZIP)
-rm -f setuptools-*.egg
LINTABLE_TESTS = \
test/coverage_coverage.py \
test/coveragetest.py \
test/test_api.py \
test/test_cmdline.py \
test/test_codeunit.py \
test/test_data.py \
test/test_execfile.py \
test/test_farm.py \
test/test_templite.py
lint:
-python -x /Python25/Scripts/pylint.bat --rcfile=.pylintrc coverage $(LINTABLE_TESTS)
python /Python25/Lib/tabnanny.py coverage test
python checkeol.py
testready: $(TEST_ZIP) devinst
tests: testready
nosetests
$(TEST_ZIP): test/covmodzip1.py
zip -j $@ $+
# WEBHOME = c:/ned/web/stellated/pages/code/modules
#
# publish:
# cp doc/coverage.px $(WEBHOME)
# cp dist/coverage-* $(WEBHOME)
kit:
python setup.py sdist --formats=gztar
python setup.py bdist_wininst
pypi:
python setup.py register
install:
python setup.py install
DEVINST_FILE = coverage.egg-info/PKG-INFO
devinst: $(DEVINST_FILE)
$(DEVINST_FILE): coverage/tracer.c
python setup.py develop
uninstall:
-rm -rf $(PYHOME)/lib/site-packages/coverage*
-rm -rf $(PYHOME)/scripts/coverage*
|