contrib/win32/buildlocal.bat
author Pierre-Yves David <pierre-yves.david@fb.com>
Tue, 05 Apr 2016 12:19:45 -0700
changeset 28822 b7782424dec8
parent 13383 70ef5b610222
permissions -rw-r--r--
test: don't rely on __del__ in test-devel-warnings.t Whatever the future of __del__ in Mercurial is, that devel-warning test is not about testing the automatic transaction rollback and we should explicitly call release. This change make this tests pass with pypy, as pypy try less hard to call __del__ at program exit.

@echo off
rem Double-click this file to (re)build Mercurial for Windows in place.
rem Useful for testing and development.
cd ..\..
del /Q mercurial\*.pyd
del /Q mercurial\*.pyc
rmdir /Q /S mercurial\locale
python setup.py build_py -c -d . build_ext -i build_mo
pause