Skip to content

Commit 2b33a71

Browse files
authored
Merge pull request #182 from seleniumbase/goodbye-hipchat
Remove the HipChat integration
2 parents 912b5d0 + 96e4748 commit 2b33a71

File tree

4 files changed

+1
-139
lines changed

4 files changed

+1
-139
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,6 @@ pip install mysqlclient==1.3.12
262262

263263
* If you use [Slack](https://slack.com), you can easily have your Jenkins jobs display results there by using the [Jenkins Slack Plugin](https://github.com/jenkinsci/slack-plugin). Another way to send messages from your tests to Slack is by using [Slack's Incoming Webhooks API](https://api.slack.com/incoming-webhooks).
264264

265-
* If you use [HipChat](https://www.hipchat.com/), you can easily have your Jenkins jobs display results there by using the [Jenkins HipChat Plugin](https://wiki.jenkins-ci.org/display/JENKINS/HipChat+Plugin). Another way is by using the [hipchat_reporting plugin](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/hipchat_reporting_plugin.py) (nosetests only).
266-
267265
<a id="amazon_section"></a>
268266
* If you're using AWS, you can setup an [Amazon S3](http://aws.amazon.com/s3/) account for saving your log files and screenshots for future viewing. SeleniumBase already has [all the code you need to connect to S3](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/s3_logging_plugin.py). You'll need to modify [settings.py](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/config/settings.py) with connection details to your instance and the location in S3 where you want log files to be saved. You'll also need to add "``--with-s3_logging``" on the command line when you run your tests.
269267

seleniumbase/config/settings.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,3 @@
133133
EMAIL_PASSWORD = "[TEST ACCOUNT GMAIL PASSWORD]"
134134
EMAIL_IMAP_STRING = "imap.gmail.com"
135135
EMAIL_IMAP_PORT = 993
136-
137-
# HipChat Reporting Credentials
138-
# (For HipChat notifications if your team uses HipChat)
139-
# (room_id and owner_to_mention get entered during nosetest options)
140-
HIPCHAT_AUTH_TOKEN = "[ENTER YOUR HIPCHAT AUTH TOKEN HERE]"

seleniumbase/plugins/hipchat_reporting_plugin.py

Lines changed: 0 additions & 129 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='seleniumbase',
10-
version='1.13.1',
10+
version='1.13.2',
1111
description='Web Automation & Testing Framework - http://seleniumbase.com',
1212
long_description='Web Automation and Testing Framework - seleniumbase.com',
1313
platforms='Mac * Windows * Linux * Docker',
@@ -61,8 +61,6 @@
6161
('db_reporting = '
6262
'seleniumbase.plugins.db_reporting_plugin:DBReporting'),
6363
's3_logging = seleniumbase.plugins.s3_logging_plugin:S3Logging',
64-
('hipchat_reporting = seleniumbase.plugins'
65-
'.hipchat_reporting_plugin:HipchatReporting'),
6664
],
6765
'pytest11': ['seleniumbase = seleniumbase.plugins.pytest_plugin']
6866
}

0 commit comments

Comments
 (0)