Skip to content

Commit 33c0ea0

Browse files
reduce versions for regular test
1 parent eaad716 commit 33c0ea0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/versions.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { coerce } from 'semver';
55
import { randomUUID } from 'crypto';
66
import { ServerOptions } from '../types';
77
import { normalize } from 'path';
8-
import { DOWNLOADABLE_MYSQL_VERSIONS } from '../src/constants';
98

9+
const versions = ['5.7.20', '5.7.x', '8.0.x', '8.4.x', '9.x']
1010
const usernames = ['root', 'dbuser']
1111

1212
const GitHubActionsTempFolder = process.platform === 'win32' ? 'C:\\Users\\RUNNER~1\\mysqlmsn' : '/tmp/mysqlmsn'
@@ -15,7 +15,7 @@ const binaryPath = normalize(GitHubActionsTempFolder + '/binaries')
1515

1616
jest.setTimeout(500_000);
1717

18-
for (const version of DOWNLOADABLE_MYSQL_VERSIONS) {
18+
for (const version of versions) {
1919
for (const username of usernames) {
2020
test(`running on version ${version} with username ${username}`, async () => {
2121
process.env.mysqlmsn_internal_DO_NOT_USE_deleteDBAfterStopped = String(!process.env.useCIDBPath)

0 commit comments

Comments
 (0)