Enable all tests, except those to be rewritten/excluded

This commit is contained in:
Doug Blank
2015-03-18 03:57:27 -04:00
parent ad1d47cc37
commit 35dead7b26
3 changed files with 8 additions and 8 deletions

View File

@@ -75,7 +75,7 @@ class Test(unittest.TestCase):
ifile = min1r
ofile = out_ged
gcmd = "Gramps.py -i %s -e %s" % (ifile, ofile)
process = subprocess.Popen("python %s" % gcmd,
process = subprocess.Popen("python3 %s" % gcmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
@@ -107,7 +107,7 @@ class Test(unittest.TestCase):
ifile = min1r
ofile = out_ged
gcmd = "Gramps.py -i %s -e %s" % (ifile, ofile)
process = subprocess.Popen("python %s" % gcmd,
process = subprocess.Popen("python3 %s" % gcmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)