Commit 7b4c8a27 authored by Michal Čihař's avatar Michal Čihař

Ensure cache is always clean

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 14be1b89
......@@ -29,21 +29,26 @@ import os.path
import datetime
class NonExistingRepository(GitRepository):
_cmd = 'nonexisting-command'
class GitTestRepository(GitRepository):
_is_supported = None
_version = None
class GitTestRepository(GitRepository):
class NonExistingRepository(GitRepository):
_is_supported = None
_version = None
_cmd = 'nonexisting-command'
class GitVersionRepository(GitRepository):
_is_supported = None
_version = None
req_version = '200000'
class GitNoVersionRepository(GitRepository):
_is_supported = None
_version = None
req_version = None
......
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