detect correct project and branch for travis-ci
This commit is contained in:
parent
26024af1a2
commit
3c6ef2dcc9
1 changed files with 6 additions and 6 deletions
|
@ -121,8 +121,8 @@ class BaseTestCase(utils.TestCase):
|
||||||
'language': 'Text only',
|
'language': 'Text only',
|
||||||
'lines': 2,
|
'lines': 2,
|
||||||
'entity': os.path.abspath(entity),
|
'entity': os.path.abspath(entity),
|
||||||
'project': 'wakatime-cli',
|
'project': os.path.basename(os.path.abspath('.')),
|
||||||
'branch': 'master',
|
'branch': os.environ.get('TRAVIS_COMMIT', 'master'),
|
||||||
'time': float(now),
|
'time': float(now),
|
||||||
'type': 'file',
|
'type': 'file',
|
||||||
}
|
}
|
||||||
|
@ -155,8 +155,8 @@ class BaseTestCase(utils.TestCase):
|
||||||
'language': 'Text only',
|
'language': 'Text only',
|
||||||
'lines': 2,
|
'lines': 2,
|
||||||
'entity': 'HIDDEN.txt',
|
'entity': 'HIDDEN.txt',
|
||||||
'project': 'wakatime-cli',
|
'project': os.path.basename(os.path.abspath('.')),
|
||||||
'branch': 'master',
|
'branch': os.environ.get('TRAVIS_COMMIT', 'master'),
|
||||||
'time': float(now),
|
'time': float(now),
|
||||||
'type': 'file',
|
'type': 'file',
|
||||||
}
|
}
|
||||||
|
@ -189,8 +189,8 @@ class BaseTestCase(utils.TestCase):
|
||||||
'language': 'Text only',
|
'language': 'Text only',
|
||||||
'lines': 2,
|
'lines': 2,
|
||||||
'entity': 'HIDDEN.txt',
|
'entity': 'HIDDEN.txt',
|
||||||
'project': 'wakatime-cli',
|
'project': os.path.basename(os.path.abspath('.')),
|
||||||
'branch': 'master',
|
'branch': os.environ.get('TRAVIS_COMMIT', 'master'),
|
||||||
'time': float(now),
|
'time': float(now),
|
||||||
'type': 'file',
|
'type': 'file',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue