@malloydata/malloy-tests 0.0.146 → 0.0.147-dev240521202508

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +8 -8
  2. package/src/runtimes.ts +5 -0
package/package.json CHANGED
@@ -21,13 +21,13 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "@jest/globals": "^29.4.3",
24
- "@malloydata/db-bigquery": "^0.0.146",
25
- "@malloydata/db-duckdb": "^0.0.146",
26
- "@malloydata/db-postgres": "^0.0.146",
27
- "@malloydata/db-snowflake": "^0.0.146",
28
- "@malloydata/db-trino": "^0.0.146",
29
- "@malloydata/malloy": "^0.0.146",
30
- "@malloydata/render": "^0.0.146",
24
+ "@malloydata/db-bigquery": "^0.0.147-dev240521202508",
25
+ "@malloydata/db-duckdb": "^0.0.147-dev240521202508",
26
+ "@malloydata/db-postgres": "^0.0.147-dev240521202508",
27
+ "@malloydata/db-snowflake": "^0.0.147-dev240521202508",
28
+ "@malloydata/db-trino": "^0.0.147-dev240521202508",
29
+ "@malloydata/malloy": "^0.0.147-dev240521202508",
30
+ "@malloydata/render": "^0.0.147-dev240521202508",
31
31
  "jsdom": "^22.1.0",
32
32
  "luxon": "^2.4.0",
33
33
  "madge": "^6.0.0"
@@ -36,5 +36,5 @@
36
36
  "@types/jsdom": "^21.1.1",
37
37
  "@types/luxon": "^2.4.0"
38
38
  },
39
- "version": "0.0.146"
39
+ "version": "0.0.147-dev240521202508"
40
40
  }
package/src/runtimes.ts CHANGED
@@ -184,6 +184,10 @@ export function testRuntimeFor(connection: Connection) {
184
184
  return new SingleConnectionRuntime(files, connection);
185
185
  }
186
186
 
187
+ /**
188
+ * All databases which should be tested by default. Experimental dialects
189
+ * should not be in this list. Use MALLOY_DATABASE=dialect_name to test those
190
+ */
187
191
  export const allDatabases = [
188
192
  'postgres',
189
193
  'bigquery',
@@ -212,6 +216,7 @@ export class RuntimeList {
212
216
  database instanceof SingleConnectionRuntime
213
217
  ? database
214
218
  : runtimeFor(database);
219
+ rt.isTestRuntime = true;
215
220
  this.runtimeMap.set(rt.connection.name, rt);
216
221
  this.runtimeList.push([rt.connection.name, rt]);
217
222
  }