##// END OF EJS Templates
run-tests: force to test pure on pypy as well
Ronny Pfannschmidt -
r10766:afbcea27 default
parent child Browse files
Show More
@@ -144,7 +144,7 b' def parseargs():'
144 144 (options, args) = parser.parse_args()
145 145
146 146 # jython is always pure
147 if 'java' in sys.platform:
147 if 'java' in sys.platform or '__pypy__' in sys.modules:
148 148 options.pure = True
149 149
150 150 if options.with_hg:
General Comments 0
You need to be logged in to leave comments. Login now