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
Update the MySQL deploy script
  • Loading branch information
mdmintz committed Apr 11, 2018
commit 487cd39f673cabfcf92db4e65e55f69a96c76194
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ addons:
chrome: stable
before_install:
- sudo mysql -e "use mysql; update user set authentication_string=PASSWORD('test') where User='root'; update user set plugin='mysql_native_password';FLUSH PRIVILEGES;"
# - "sudo mysql -e 'CREATE DATABASE IF NOT EXISTS test_db;'"
- "sudo mysql -e 'CREATE DATABASE IF NOT EXISTS test_db;'"
- "sudo mysql -h 127.0.0.1 -u root test_db < seleniumbase/core/testcaserepository.sql"
- sudo service mysql restart
- "sudo service mysql restart"
install:
- "pip install --upgrade pip"
- "pip install -r requirements.txt --upgrade"
Expand Down