ci: Add rtic-uitest feature

Fixes the trybuild ui tests for rtic crate
This commit is contained in:
Henrik Tjäder 2023-03-04 02:11:50 +01:00
parent 44af136605
commit 2e63f5bca3
3 changed files with 10 additions and 4 deletions

View file

@ -38,9 +38,10 @@ impl TestMetadata {
match package {
Package::Rtic => {
let features = Some(format!(
"{},{}",
"{},{},{}",
DEFAULT_FEATURES,
backend.to_rtic_feature(),
"rtic-uitest"
));
CargoCommand::Test {
package: Some(package),