We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 773d890 commit a736bdcCopy full SHA for a736bdc
tests/Makefile
@@ -48,7 +48,7 @@ else
48
ifeq ($(findstring macosx,$(PLATFORM)),macosx)
49
TARGET = _pytransform.dylib
50
CMDPREFIX =
51
-PYCMD = python
+PYCMD = pythonXY
52
VERSIONS := 2.7 3.6
53
else
54
TARGET = _pytransform.dll
@@ -65,7 +65,7 @@ endif
65
66
WORKPATH = __runtime__
67
68
-.PHONY: test unit trial build bench
+.PHONY: test unit trial build
69
70
71
test: build
@@ -109,13 +109,5 @@ trial:
109
make clean; \
110
done
111
112
-bench:
113
- for pyver in $(VERSIONS) ; do \
114
- echo -e "\n******************** Testing Python$${pyver} ...\n" ; \
115
- $(CMDPREFIX) PYTHON=$(subst XY,$${pyver},$(PYCMD)) bash benchmark-test.sh || exit 1; \
116
- echo -e "\n******************** Test Python$${pyver} End.\n" ; \
117
- done
118
- make clean
119
-
120
clean:
121
rm -rf *.pyc *.pyo __pycache__ _pytransform.log $(WORKPATH)
0 commit comments