summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2009-07-12 10:39:40 -0400
committerNed Batchelder <ned@nedbatchelder.com>2009-07-12 10:39:40 -0400
commit26ed7f8787e7529af01c94e0b2f5584add054c65 (patch)
treef6f16960f2eaac77a8901677872570ac276d9746
parenta34125b6328ee68130242ae2c664da052469e20a (diff)
downloadpython-coveragepy-git-26ed7f8787e7529af01c94e0b2f5584add054c65.tar.gz
A cmd file to run the coversion to Py3k, and run the tests.
-rw-r--r--three.cmd9
1 files changed, 9 insertions, 0 deletions
diff --git a/three.cmd b/three.cmd
new file mode 100644
index 00000000..7be57c08
--- /dev/null
+++ b/three.cmd
@@ -0,0 +1,9 @@
+@REM Copy the sources, convert to Py3k, and run the tests.
+
+rmdir/s/q ..\three
+xcopy /s/h/i/e . ..\three
+cd ..\three
+call switchpy 31
+python \python31\Tools\Scripts\2to3.py -w coverage test setup.py
+make testready
+python \python31\Scripts\nosetests3