Skip to content

Commit ad642e9

Browse files
committed
skip R tests
1 parent 7feb05b commit ad642e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
with:
1616
node-version: 18
1717
cache: 'yarn'
18-
- uses: r-lib/actions/setup-r@v2
1918
- run: yarn --frozen-lockfile
2019
- run: yarn test:mocha
2120
- run: |

test/dataloaders-test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ describe("data loaders are called with the appropriate command", () => {
2828
const out = await loader.load({verbose: false});
2929
assert.strictEqual(await readFile("test/" + out, "utf-8"), "python3\n");
3030
});
31-
it("a .R data loader is called with Rscript", async () => {
31+
// Skipping because this requires R to be installed (which is slow in CI).
32+
it.skip("a .R data loader is called with Rscript", async () => {
3233
const loader = Loader.find("test", "dataloaders/data6.txt")!;
3334
const out = await loader.load({verbose: false});
3435
assert.strictEqual(await readFile("test/" + out, "utf-8"), "Rscript\n");

0 commit comments

Comments
 (0)