Skip to content

Commit

Permalink
test(rust): Adding feature annotation (#11671)
Browse files Browse the repository at this point in the history
  • Loading branch information
svaningelgem authored Oct 12, 2023
1 parent fb2c458 commit 69b7fbb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/polars-lazy/src/tests/queries.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1356,6 +1356,7 @@ fn test_lazy_ternary_predicate_pushdown() -> PolarsResult<()> {
}

#[test]
#[cfg(feature = "dtype-categorical")]
fn test_categorical_addition() -> PolarsResult<()> {
let df = fruits_cars();

Expand Down Expand Up @@ -1464,6 +1465,7 @@ fn test_list_in_select_context() -> PolarsResult<()> {
}

#[test]
#[cfg(feature = "round_series")]
fn test_round_after_agg() -> PolarsResult<()> {
let df = fruits_cars();

Expand Down Expand Up @@ -1691,6 +1693,7 @@ fn empty_df() -> PolarsResult<()> {
}

#[test]
#[cfg(feature = "abs")]
fn test_apply_flatten() -> PolarsResult<()> {
let df = df![
"A"=> [1.1435, 2.223456, 3.44732, -1.5234, -2.1238, -3.2923],
Expand Down

0 comments on commit 69b7fbb

Please sign in to comment.