Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
7b37cb7
Add MySQL to the deploy script
mdmintz Apr 10, 2018
dbf1822
Update MySQL deploy script
mdmintz Apr 10, 2018
2048c61
Update the mysql deploy script
mdmintz Apr 10, 2018
d8fdced
Update the mysql deploy script
mdmintz Apr 10, 2018
e1da445
Update the mysql deploy script
mdmintz Apr 10, 2018
aa530a8
Update the mysql deploy script
mdmintz Apr 10, 2018
865da0d
Update the deploy script
mdmintz Apr 10, 2018
550a540
Update the mysql deploy script
mdmintz Apr 10, 2018
d2c73cf
Update the mysql deploy script
mdmintz Apr 11, 2018
6f65c00
Update the mysql deploy script
mdmintz Apr 11, 2018
c9722fe
Update the MySQL deploy script
mdmintz Apr 11, 2018
5651699
Update the MySQL deploy script
mdmintz Apr 11, 2018
5b16954
Update the MySQL deploy script
mdmintz Apr 11, 2018
487cd39
Update the MySQL deploy script
mdmintz Apr 11, 2018
da71335
Update the MySQL deploy script
mdmintz Apr 12, 2018
23126f4
Update the MySQL deploy script
mdmintz Apr 12, 2018
8742b25
Update the MySQL deploy script
mdmintz Apr 12, 2018
5d0190f
Update the MySQL deploy script
mdmintz Apr 12, 2018
07f9bf0
Fix import for Python 3
mdmintz Apr 12, 2018
dd8d7ec
Add mysqlclient to requirements
mdmintz Apr 12, 2018
5f3e42e
Slow down the GitHub test to prevent triggering a call limit
mdmintz Apr 12, 2018
0168de4
Update the MySQL deploy script
mdmintz Apr 12, 2018
2625390
Update the MySQL deploy script
mdmintz Apr 12, 2018
0861ed0
Add a comment about changing MySQL passwords in the deploy script
mdmintz Apr 12, 2018
923abea
Update the description
mdmintz Apr 12, 2018
518594e
Improve the MySQL DB test storage feature.
mdmintz Apr 12, 2018
91953cd
Update the ReadMe
mdmintz Apr 12, 2018
b810287
Update documentation.
mdmintz Apr 12, 2018
2b8e5d5
Update the MySQL deploy script
mdmintz Apr 12, 2018
82e6219
Rename the script that creates MySQL DB tables
mdmintz Apr 12, 2018
6a62c40
Update the Google Cloud ReadMe with the updated MySQL script
mdmintz Apr 12, 2018
8ead18e
Fix a few MySQL DB naming issues
mdmintz Apr 12, 2018
8b59ce0
See if mysqlclient includes MySQL-python for the deploy script
mdmintz Apr 13, 2018
bbf3cda
Update the Google Cloud ReadMe
mdmintz Apr 13, 2018
9c94352
Version 1.9.0
mdmintz Apr 13, 2018
d389df9
Update the deploy script
mdmintz Apr 13, 2018
7ff6baf
Update the deploy script
mdmintz Apr 13, 2018
14bd125
Update naming of db methods
mdmintz Apr 14, 2018
8798dba
If you're overriding SeleniumBase's BaseCase setUp() method, you'll k…
mdmintz Apr 16, 2018
ee7306a
test_db method naming
mdmintz Apr 17, 2018
d44ec1d
Renaming a DB method file
mdmintz Apr 17, 2018
a776271
Rename a test_db table for clarity
mdmintz Apr 17, 2018
34a2078
Update naming in ReadMe
mdmintz Apr 17, 2018
476eaa9
Removing some older test_db functionality until it's ready for prime …
mdmintz Apr 17, 2018
3aceede
Update the ReadMe
mdmintz Apr 17, 2018
824f72c
Don't trigger GitHub's automation-detection system
mdmintz Apr 17, 2018
32289fc
Update the deploy script
mdmintz Apr 17, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix import for Python 3
  • Loading branch information
mdmintz committed Apr 12, 2018
commit 07f9bf04c55fc8545bf1ac27897a806f333a4e5d
2 changes: 1 addition & 1 deletion seleniumbase/core/mysql.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def __init__(self, database_env='test', conf_creds=None):
"""
Gets database information from mysql_conf.py and creates a connection.
"""
import mysql_conf as conf # This had problems when using Python 3
from seleniumbase.core import mysql_conf as conf
import MySQLdb
db_server, db_user, db_pass, db_schema = \
conf.APP_CREDS[conf.Apps.TESTCASE_REPOSITORY][database_env]
Expand Down