From 2521a8f5e2661945298902783d81d94634615693 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Mon, 31 Jul 2023 14:55:40 +0200 Subject: [PATCH] chore(rust): Fix `make integration-tests` command --- crates/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/Makefile b/crates/Makefile index 5ee65b15d80e..ae072c0c1e10 100644 --- a/crates/Makefile +++ b/crates/Makefile @@ -57,7 +57,7 @@ test: ## Run tests .PHONY: integration-tests integration-tests: ## Run integration tests - cargo test --all-features --test it + cargo test --all-features --test it -p polars .PHONY: test-doc test-doc: ## Run doc examples