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".
|
"domain" or "app". Defaults to "file".
|
||||||
--category CATEGORY Category of this heartbeat activity. Can be "coding",
|
--category CATEGORY Category of this heartbeat activity. Can be "coding",
|
||||||
"building", "indexing", "debugging", "running tests",
|
"building", "indexing", "debugging", "running tests",
|
||||||
"manual testing", "browsing", "code reviewing" or
|
"writing tests", "manual testing", "code reviewing",
|
||||||
"designing". Defaults to "coding".
|
"browsing", or "designing". Defaults to "coding".
|
||||||
--proxy PROXY Optional proxy configuration. Supports HTTPS and SOCKS
|
--proxy PROXY Optional proxy configuration. Supports HTTPS and SOCKS
|
||||||
proxies. For example: https://user:pass@host:port or
|
proxies. For example: https://user:pass@host:port or
|
||||||
socks5://user:pass@host:port or domain\user:pass
|
socks5://user:pass@host:port or domain\user:pass
|
||||||
|
|
|
@ -601,6 +601,7 @@ class ArgumentsTestCase(TestCase):
|
||||||
'debugging',
|
'debugging',
|
||||||
'running tests',
|
'running tests',
|
||||||
'manual testing',
|
'manual testing',
|
||||||
|
'writing tests',
|
||||||
'browsing',
|
'browsing',
|
||||||
'code reviewing',
|
'code reviewing',
|
||||||
'designing',
|
'designing',
|
||||||
|
|
|
@ -89,8 +89,8 @@ def parse_arguments():
|
||||||
help='Category of this heartbeat activity. Can be ' +
|
help='Category of this heartbeat activity. Can be ' +
|
||||||
'"coding", "building", "indexing", ' +
|
'"coding", "building", "indexing", ' +
|
||||||
'"debugging", "running tests", ' +
|
'"debugging", "running tests", ' +
|
||||||
'"manual testing", "browsing", ' +
|
'"writing tests", "manual testing", ' +
|
||||||
'"code reviewing" or "designing". ' +
|
'"code reviewing", "browsing", or "designing". ' +
|
||||||
'Defaults to "coding".')
|
'Defaults to "coding".')
|
||||||
parser.add_argument('--proxy', dest='proxy', action=StoreWithoutQuotes,
|
parser.add_argument('--proxy', dest='proxy', action=StoreWithoutQuotes,
|
||||||
help='Optional proxy configuration. Supports HTTPS '+
|
help='Optional proxy configuration. Supports HTTPS '+
|
||||||
|
|
|
@ -70,6 +70,7 @@ class Heartbeat(object):
|
||||||
'debugging',
|
'debugging',
|
||||||
'running tests',
|
'running tests',
|
||||||
'manual testing',
|
'manual testing',
|
||||||
|
'writing tests',
|
||||||
'browsing',
|
'browsing',
|
||||||
'code reviewing',
|
'code reviewing',
|
||||||
'designing',
|
'designing',
|
||||||
|
|
Loading…
Reference in a new issue