зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1639007 - Make mach wpt-unittest run in Python 3, r=karlcow DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D92930
This commit is contained in:
Родитель
adcdde0bf9
Коммит
904eff9577
1
mach
1
mach
|
@ -37,7 +37,6 @@ py2commands="
|
|||
wpt-metadata-merge
|
||||
wpt-serve
|
||||
wpt-test-paths
|
||||
wpt-unittest
|
||||
wpt-update
|
||||
"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import ConfigParser
|
||||
import argparse
|
||||
import configparser
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
|
@ -43,7 +43,7 @@ class ReplaceRequirements(object):
|
|||
|
||||
def read_deps(self):
|
||||
rv = []
|
||||
parser = ConfigParser.ConfigParser()
|
||||
parser = configparser.ConfigParser()
|
||||
path = os.path.join(self.tox_path, "tox.ini")
|
||||
with open(path) as f:
|
||||
parser.readfp(f)
|
||||
|
|
Загрузка…
Ссылка в новой задаче