Commit da687e88 authored by Michal Čihař's avatar Michal Čihař

Base on GitRepository to avoid abstract methods

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 64118450
......@@ -7,6 +7,7 @@ omit =
*/settings_*.py
*/settings.py
*/wsgi.py
concurrency = multiprocessing
[paths]
source = .
......
......@@ -20,7 +20,7 @@
from weblate.trans.tests.test_models import RepoTestCase
from weblate.trans.vcs import GitRepository, HgRepository, \
RepositoryException, GitWithGerritRepository, Repository
RepositoryException, GitWithGerritRepository
from django.test import TestCase
import tempfile
......@@ -29,7 +29,7 @@ import os.path
import datetime
class NonExistingRepository(Repository):
class NonExistingRepository(GitRepository):
_cmd = 'nonexisting-command'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment