mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-06 20:40:38 +00:00
disable debug in tests with env var
This commit is contained in:
@@ -29,9 +29,9 @@ class TestCompare(unittest.TestCase):
|
||||
def compare(self, o, tmp, nbdotfiles):
|
||||
dotfiles = o.dotfiles
|
||||
self.assertTrue(len(dotfiles) == nbdotfiles)
|
||||
t = Templategen(base=o.dotpath, debug=True)
|
||||
t = Templategen(base=o.dotpath, debug=o.debug)
|
||||
inst = Installer(create=o.create, backup=o.backup,
|
||||
dry=o.dry, base=o.dotpath, debug=True)
|
||||
dry=o.dry, base=o.dotpath, debug=o.debug)
|
||||
comp = Comparator()
|
||||
results = {}
|
||||
for dotfile in dotfiles:
|
||||
|
||||
Reference in New Issue
Block a user