Remove the mysqlclient requirement due to Windows issues

This commit is contained in:
Michael Mintz 2018-05-07 11:51:08 -04:00
parent 798f9a94a8
commit 8452010442
3 changed files with 2 additions and 4 deletions

View File

@ -267,10 +267,10 @@ Here are some things you can do to setup a production environment for your testi
* You can use [the Selenium Grid](https://github.com/SeleniumHQ/selenium/wiki/Grid2) to scale your testing by distributing tests on several machines with parallel execution. To do this, check out the SeleniumBase [selenium_grid folder](https://github.com/seleniumbase/SeleniumBase/tree/master/integrations/selenium_grid), which should have everything you need. The [Selenium Grid ReadMe](https://github.com/seleniumbase/SeleniumBase/blob/master/integrations/selenium_grid/ReadMe.md) will help you get started.
* If you're using the [SeleniumBase MySQL feature](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/mysql_installation.md) to save results from tests running on a server machine, you can install [MySQL Workbench](http://dev.mysql.com/downloads/tools/workbench/) to help you read & write from your DB more easily. You'll also need to install the MySQL-Python connector. Depending on your system, you may have to install this a bit differently from the command below:
* If you're using the [SeleniumBase MySQL feature](https://github.com/seleniumbase/SeleniumBase/blob/master/help_docs/mysql_installation.md) to save results from tests running on a server machine, you can install [MySQL Workbench](http://dev.mysql.com/downloads/tools/workbench/) to help you read & write from your DB more easily. You'll also need to install the MySQL Python client. Depending on your system, you may need to install additional requirements for this (such as on Windows). See [Stackoverflow](https://stackoverflow.com/questions/43102442/whats-the-difference-between-mysqldb-mysqlclient-and-mysql-connector-python) for more info.
```bash
pip install MySQL-python==1.2.5
pip install mysqlclient==1.3.12
```
* 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).

View File

@ -10,7 +10,6 @@ six==1.10.0
flake8==3.5.0
requests==2.18.4
beautifulsoup4==4.6.0
mysqlclient==1.3.12
unittest2==1.1.0
chardet==3.0.4
boto==2.48.0

View File

@ -29,7 +29,6 @@ setup(
'flake8==3.5.0',
'requests==2.18.4',
'beautifulsoup4==4.6.0',
'mysqlclient==1.3.12',
'unittest2==1.1.0',
'chardet==3.0.4',
'boto==2.48.0',