Skip to content

Commit cecbc89

Browse files
committed
no space between -p and password maybe??
1 parent f9edf27 commit cecbc89

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24+
# number of parallel jobs
25+
ci_node_total: [3]
26+
ci_node_index: [0,1,2]
27+
2428
# Run in all these versions of Python
2529
python-version: [ "2.7", "3.10", "3.11.0-rc.1" ]
2630
#python-version: [ "2.7", "3.10", "3.9", "3.8", "3.6" ]
@@ -62,7 +66,8 @@ jobs:
6266
sleep 5
6367
sudo service mysql restart; sleep 30
6468
ps -ef | grep mysqld
65-
sudo mysql -u root -p root -e 'GRANT ALL ON rounduptest.* TO rounduptest@localhost IDENTIFIED BY "rounduptest";'
69+
sudo netstat -anp | grep mysqld
70+
sudo mysql -u root -proot -e 'GRANT ALL ON rounduptest.* TO rounduptest@localhost IDENTIFIED BY "rounduptest";'
6671
6772
- name: Install postgres
6873
run: |

0 commit comments

Comments
 (0)