From f2856ec1a126e5d3a06e4218d984b83279d81f39 Mon Sep 17 00:00:00 2001 From: jedel1043 Date: Fri, 27 May 2022 02:52:21 -0500 Subject: [PATCH] Fix actions and tests --- .github/workflows/rust.yml | 6 +++--- boa_tester/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fe54e3deb94..e7c170dff0d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -30,7 +30,7 @@ jobs: - name: Run cargo-tarpaulin uses: actions-rs/tarpaulin@v0.1 with: - args: --ignore-tests + args: --features intl --ignore-tests - name: Upload to codecov.io uses: codecov/codecov-action@v3 @@ -55,7 +55,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: -v + args: -v --features intl test_on_macos: name: Tests on MacOS @@ -70,7 +70,7 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - args: -v + args: -v --features intl fmt: name: Rustfmt diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index bd5d2489323..9c9a6177b28 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -12,7 +12,7 @@ license = "Unlicense/MIT" publish = false [dependencies] -boa_engine = { path = "../boa_engine", version = "0.14.0" } +boa_engine = { path = "../boa_engine", features = ["intl"], version = "0.14.0" } boa_interner = { path = "../boa_interner", version = "0.14.0" } structopt = "0.3.26" serde = { version = "1.0.137", features = ["derive"] }