Adrian Schröter
6e55d7df19
- add new 'versionformat' option to determine how version is extracted via git show --pretty=... (and similar for svn / hg / bzr) - support caching of cloned repositories to speed up fetch from upstream - use mktemp -u because git/hg refuse to clone into an empty directory on SLES11 OBS-URL: https://build.opensuse.org/request/show/105386 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Tools/obs-service-tar_scm?expand=0&rev=33
18 lines
424 B
Python
18 lines
424 B
Python
#!/usr/bin/python
|
|
|
|
from githgtests import GitHgTests
|
|
from gitfixtures import GitFixtures
|
|
from utils import run_git
|
|
|
|
class GitTests(GitHgTests):
|
|
scm = 'git'
|
|
initial_clone_command = 'git clone'
|
|
update_cache_command = 'git fetch'
|
|
fixtures_class = GitFixtures
|
|
|
|
abbrev_hash_format = '%h'
|
|
timestamp_format = '%at'
|
|
|
|
def default_version(self):
|
|
return self.timestamps(self.rev(2))
|