Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45140f9 commit dd82bb9Copy full SHA for dd82bb9
1 file changed
Makefile.in
@@ -200,10 +200,11 @@ Modules: Parser Python Objects
200
# Test the interpreter (twice, once without .pyc files, once with)
201
TESTOPTS=
202
TESTPROG= $(srcdir)/Lib/test/regrtest.py
203
+TESTPYTHON= ./python
204
test: python
205
-rm -f $(srcdir)/Lib/test/*.pyc
- -PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
206
- PYTHONPATH= ./python $(TESTPROG) $(TESTOPTS)
+ -PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
207
+ PYTHONPATH= $(TESTPYTHON) $(TESTPROG) $(TESTOPTS)
208
209
# Install everything
210
install: altinstall bininstall maninstall
0 commit comments