new category Writing Tests
This commit is contained in:
parent
f04b70583a
commit
2599beba9c
4 changed files with 6 additions and 4 deletions
|
@ -22,8 +22,8 @@ optional arguments:
|
|||
"domain" or "app". Defaults to "file".
|
||||
--category CATEGORY Category of this heartbeat activity. Can be "coding",
|
||||
"building", "indexing", "debugging", "running tests",
|
||||
"manual testing", "browsing", "code reviewing" or
|
||||
"designing". Defaults to "coding".
|
||||
"writing tests", "manual testing", "code reviewing",
|
||||
"browsing", or "designing". Defaults to "coding".
|
||||
--proxy PROXY Optional proxy configuration. Supports HTTPS and SOCKS
|
||||
proxies. For example: https://user:pass@host:port or
|
||||
socks5://user:pass@host:port or domain\user:pass
|
||||
|
|
|
@ -601,6 +601,7 @@ class ArgumentsTestCase(TestCase):
|
|||
'debugging',
|
||||
'running tests',
|
||||
'manual testing',
|
||||
'writing tests',
|
||||
'browsing',
|
||||
'code reviewing',
|
||||
'designing',
|
||||
|
|
|
@ -89,8 +89,8 @@ def parse_arguments():
|
|||
help='Category of this heartbeat activity. Can be ' +
|
||||
'"coding", "building", "indexing", ' +
|
||||
'"debugging", "running tests", ' +
|
||||
'"manual testing", "browsing", ' +
|
||||
'"code reviewing" or "designing". ' +
|
||||
'"writing tests", "manual testing", ' +
|
||||
'"code reviewing", "browsing", or "designing". ' +
|
||||
'Defaults to "coding".')
|
||||
parser.add_argument('--proxy', dest='proxy', action=StoreWithoutQuotes,
|
||||
help='Optional proxy configuration. Supports HTTPS '+
|
||||
|
|
|
@ -70,6 +70,7 @@ class Heartbeat(object):
|
|||
'debugging',
|
||||
'running tests',
|
||||
'manual testing',
|
||||
'writing tests',
|
||||
'browsing',
|
||||
'code reviewing',
|
||||
'designing',
|
||||
|
|
Loading…
Reference in a new issue