for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# SPDX-License-Identifier: LGPL-3.0-only
"""Plug-in module to store requirements in a Veracity repository."""
from doorstop import common
from doorstop.core.vcs.base import BaseWorkingCopy
log = common.logger(__name__)
class WorkingCopy(BaseWorkingCopy):
"""Veracity working copy."""
DIRECTORY = '.sgdrawer'
IGNORES = ('.sgignores', '.vvignores')
def lock(self, path):
log.debug("`vv` does not support scripted locking: %s", path)
self.call('vv', 'pull')
self.call('vv', 'update')
def edit(self, path):
log.info("`vv` adds all changes")
def add(self, path):
self.call('vv', 'add', path)
def delete(self, path):
self.call('vv', 'remove', path)
def commit(self, message=None):
message = message or input("Commit message: ")
self.call('vv', 'commit', '--message', message)
self.call('vv', 'push')