Skip to content

Commit f6a7459

Browse files
committed
make unit tests not to run in CI (as it requires Java)
1 parent fd4d3b6 commit f6a7459

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/cubejs-databricks-jdbc-driver/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ $ yarn
2020
$ yarn test
2121
```
2222

23+
Note: Unit tests requires Java to be installed.
24+
2325
### License
2426

2527
Cube.js Databricks Database Driver is [Apache 2.0 licensed](./LICENSE).

packages/cubejs-databricks-jdbc-driver/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"build": "rm -rf dist && npm run tsc",
1919
"tsc": "tsc",
2020
"watch": "tsc -w",
21-
"test": "npm run unit",
22-
"unit": "jest dist/test --forceExit",
21+
"test": "npm run unit-tests",
22+
"unit-tests": "jest dist/test --forceExit",
2323
"lint": "eslint src/* --ext .ts",
2424
"lint:fix": "eslint --fix src/* --ext .ts",
2525
"postinstall": "node bin/post-install"

0 commit comments

Comments
 (0)