Use ICED_TEST_BACKEND env var in iced_test
This commit is contained in:
parent
788d9989ba
commit
f74ae73784
2 changed files with 2 additions and 2 deletions
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
|
@ -5,7 +5,7 @@ jobs:
|
|||
runs-on: ${{ matrix.os }}
|
||||
env:
|
||||
RUSTFLAGS: --deny warnings
|
||||
ICED_BACKEND: tiny-skia
|
||||
ICED_TEST_BACKEND: tiny-skia
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macOS-latest]
|
||||
|
|
|
|||
|
|
@ -188,7 +188,7 @@ where
|
|||
}
|
||||
|
||||
let mut renderer = {
|
||||
let backend = env::var("ICED_BACKEND").ok();
|
||||
let backend = env::var("ICED_TEST_BACKEND").ok();
|
||||
|
||||
iced_runtime::futures::futures::executor::block_on(Renderer::new(
|
||||
default_font,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue