From 15fc618ca2e92aa582173b1c44eec011a8bef890 Mon Sep 17 00:00:00 2001 From: Micah Date: Wed, 6 Mar 2024 03:57:56 -0600 Subject: [PATCH] exclude language-server from wasm tests --- .github/workflows/main.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aa8f9d7fc0..ebceb1540f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -102,7 +102,7 @@ jobs: # wasm-pack needs a Cargo.toml with a 'package' field. # (see https://github.com/rustwasm/wasm-pack/issues/642) # This will still run all tests in the workspace. - run: wasm-pack test --node crates/fe --workspace + run: wasm-pack test --node crates/fe --workspace --exclude fe-language-server release: # Only run this when we push a tag diff --git a/Makefile b/Makefile index f0849e0991..976cff8b66 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ docker-wasm-test: --volume "$(shell pwd):/mnt" \ --workdir '/mnt' \ davesque/rust-wasm \ - wasm-pack test --node -- --workspace + wasm-pack test --node -- --workspace --exclude fe-language-server .PHONY: coverage coverage: