Passed
Push — develop ( cb7fd7...de7145 )
by Jace
01:17
created

doorstop/core/vcs/mercurial.py (1 issue)

1
# SPDX-License-Identifier: LGPL-3.0-only
2
3
"""Plug-in module to store requirements in a Mercurial repository."""
4
5
from doorstop import common
6
from doorstop.core.vcs.base import BaseWorkingCopy
7
8
log = common.logger(__name__)
9
10
11 View Code Duplication
class WorkingCopy(BaseWorkingCopy):
0 ignored issues
show
This code seems to be duplicated in your project.
Loading history...
12
    """Mercurial working copy."""
13
14
    DIRECTORY = '.hg'
15
    IGNORES = ('.hgignore',)
16
17
    def lock(self, path):
18
        log.debug("`hg` does not support locking: {}".format(path))
19
        self.call('hg', 'pull', '-u')
20
21
    def edit(self, path):
22
        self.call('hg', 'add', path)
23
24
    def add(self, path):
25
        self.call('hg', 'add', path)
26
27
    def delete(self, path):
28
        self.call('hg', 'remove', path, '--force')
29
30
    def commit(self, message=None):
31
        message = message or input("Commit message: ")
32
        self.call('hg', 'commit', '--message', message)
33
        self.call('hg', 'push')
34