Skip to content

Commit e07eae2

Browse files
Merge pull request #123 from Sebastian-Webster/v1.5.0
v1.5.0
2 parents b55bada + 8e80dfe commit e07eae2

File tree

7 files changed

+680
-709
lines changed

7 files changed

+680
-709
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: npm ci
3131

3232
- name: Run tests
33-
run: npm run test:ci
33+
run: npm run test:ci --colors
3434

3535
- name: Upload mysqlmsn directory
3636
if: ${{ failure() }}
@@ -63,7 +63,7 @@ jobs:
6363
run: npm ci
6464

6565
- name: Run tests
66-
run: npm run test:ci
66+
run: npm run test:ci --colors
6767

6868
- name: Upload mysqlmsn directory
6969
if: ${{ failure() }}
@@ -95,7 +95,7 @@ jobs:
9595
run: bun install
9696

9797
- name: Run tests
98-
run: bun run test:ci
98+
run: bun run test:ci --colors
9999

100100
- name: Upload mysqlmsn directory
101101
if: ${{ failure() }}
@@ -127,7 +127,7 @@ jobs:
127127
run: bun install
128128

129129
- name: Run tests
130-
run: bun run test:ci
130+
run: bun run test:ci --colors
131131

132132
- name: Upload mysqlmsn directory
133133
if: ${{ failure() }}
@@ -159,7 +159,7 @@ jobs:
159159
run: npm ci
160160

161161
- name: Run tests
162-
run: npm test
162+
run: npm test --colors
163163

164164
test-node-linux-and-mac:
165165
runs-on: ${{ matrix.os }}
@@ -183,7 +183,7 @@ jobs:
183183
run: npm ci
184184

185185
- name: Run tests
186-
run: npm test
186+
run: npm test --colors
187187

188188
test-bun-windows:
189189
runs-on: ${{ matrix.os }}
@@ -207,7 +207,7 @@ jobs:
207207
run: bun install
208208

209209
- name: Run tests
210-
run: bun run test
210+
run: bun run test --colors
211211

212212
test-bun-linux-and-mac:
213213
runs-on: ${{ matrix.os }}
@@ -231,7 +231,7 @@ jobs:
231231
run: bun install
232232

233233
- name: Run tests
234-
run: bun run test
234+
run: bun run test --colors
235235

236236
stress-node-windows:
237237
runs-on: ${{ matrix.os }}
@@ -255,7 +255,7 @@ jobs:
255255
run: npm ci
256256

257257
- name: Run tests
258-
run: npm run stress
258+
run: npm run stress --colors
259259

260260
- name: Upload mysqlmsn directory
261261
if: ${{ failure() }}
@@ -310,7 +310,7 @@ jobs:
310310
run: npm ci
311311

312312
- name: Run tests
313-
run: npm run stress
313+
run: npm run stress --colors
314314

315315
- name: Upload mysqlmsn directory
316316
if: ${{ failure() }}
@@ -345,7 +345,7 @@ jobs:
345345
run: bun install
346346

347347
- name: Run tests
348-
run: bun run stress
348+
run: bun run stress --colors
349349

350350
- name: Upload mysqlmsn directory
351351
if: ${{ failure() }}
@@ -401,7 +401,7 @@ jobs:
401401
run: bun install
402402

403403
- name: Run tests
404-
run: bun run stress
404+
run: bun run stress --colors
405405

406406
- name: Upload test databases
407407
if: ${{ failure() }}
@@ -431,4 +431,4 @@ jobs:
431431
run: npm ci
432432

433433
- name: Run tests
434-
run: npm test
434+
run: npm test --colors

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,14 @@ Default: false
186186

187187
Description: This option only applies if the system-installed MySQL version is lower than the oldest supported MySQL version for this package (8.0.20) and the `version` option is not defined. If set to `true`, this package will use the latest version of MySQL instead of the system-installed version. If `false`, the package will throw an error.
188188

189+
- `downloadRetries: number`
190+
191+
Required: No
192+
193+
Default: 3
194+
195+
Description: The number of times to try to download a MySQL binary before giving up and rejecting the `createDB()` promise.
196+
189197
***
190198
### :warning: Internal Options :warning:
191199

0 commit comments

Comments
 (0)