diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2009-07-12 10:39:40 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2009-07-12 10:39:40 -0400 |
commit | 26ed7f8787e7529af01c94e0b2f5584add054c65 (patch) | |
tree | f6f16960f2eaac77a8901677872570ac276d9746 | |
parent | a34125b6328ee68130242ae2c664da052469e20a (diff) | |
download | python-coveragepy-git-26ed7f8787e7529af01c94e0b2f5584add054c65.tar.gz |
A cmd file to run the coversion to Py3k, and run the tests.
-rw-r--r-- | three.cmd | 9 |
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
|