mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Rename humbug => zulip in tddium integration.
(imported from commit f48dd9f7ddc8221c90373300eedf87077d9e5874)
This commit is contained in:
		@@ -30,27 +30,27 @@ from os import path, environ
 | 
			
		||||
#
 | 
			
		||||
# Expects Tddium environment variables plus:
 | 
			
		||||
#
 | 
			
		||||
#   HUMBUG_USER    e.g. builds@solanolabs.com
 | 
			
		||||
#   HUMBUG_API_KEY e.g. 00000000000000000000000000000000
 | 
			
		||||
#   HUMBUG_STREAM  e.g. builds
 | 
			
		||||
#   ZULIP_USER    e.g. builds@solanolabs.com
 | 
			
		||||
#   ZULIP_API_KEY e.g. 00000000000000000000000000000000
 | 
			
		||||
#   ZULIP_STREAM  e.g. builds
 | 
			
		||||
#
 | 
			
		||||
# If HUMBUG_API_KEY is not specified, it will be read from
 | 
			
		||||
# ~/.humbug-api-key.
 | 
			
		||||
# If ZULIP_API_KEY is not specified, it will be read from
 | 
			
		||||
# ~/.zulip-api-key.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# Path to the directory where humbug.py lives.
 | 
			
		||||
# Path to the directory where zulip.py lives.
 | 
			
		||||
# Here we assume it's in the parent of the directory
 | 
			
		||||
# where this script lives.
 | 
			
		||||
 | 
			
		||||
humbug_directory = path.join(path.dirname(__file__), '../api')
 | 
			
		||||
zulip_directory = path.join(path.dirname(__file__), '../api')
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
sys.path.append(humbug_directory)
 | 
			
		||||
sys.path.append(zulip_directory)
 | 
			
		||||
import zulip
 | 
			
		||||
 | 
			
		||||
client = zulip.Client(
 | 
			
		||||
    email   = environ['HUMBUG_USER'],
 | 
			
		||||
    api_key = environ.get('HUMBUG_API_KEY'))
 | 
			
		||||
    email   = environ['ZULIP_USER'],
 | 
			
		||||
    api_key = environ.get('ZULIP_API_KEY'))
 | 
			
		||||
 | 
			
		||||
tddium_server = environ.get('TDDIUM_API_SERVER', 'api.tddium.com')
 | 
			
		||||
report_url    = 'https://%s/1/reports/%s' % (tddium_server, environ['TDDIUM_SESSION_ID'])
 | 
			
		||||
@@ -58,7 +58,7 @@ repo_name     = path.basename(environ['TDDIUM_REPO_ROOT'])
 | 
			
		||||
 | 
			
		||||
result = client.send_message(dict(
 | 
			
		||||
    type    = 'stream',
 | 
			
		||||
    to      = environ['HUMBUG_STREAM'],
 | 
			
		||||
    to      = environ['ZULIP_STREAM'],
 | 
			
		||||
    subject = 'build for ' + repo_name,
 | 
			
		||||
    content = '%s [%s](%s)' %
 | 
			
		||||
        (repo_name, environ['TDDIUM_BUILD_STATUS'], report_url)))
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user