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 | 03426c3673475165ff2036730aa1aa6993373e7f (patch) | |
tree | 38817dab3a55474d88adfddd7d421f1a4d6e27e7 | |
parent | 89f04483031d1fc087ff60fec08c1050d05f2f2c (diff) | |
download | python-coveragepy-03426c3673475165ff2036730aa1aa6993373e7f.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 0000000..7be57c0 --- /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
|