Skip to content

Commit 48dacb2

Browse files
committed
Remove '--include-ignored' from Makefile
It isn't clear why this was included in the first place and it doesn't appear to be used now. Signed-off-by: Lann Martin <[email protected]>
1 parent e2900f3 commit 48dacb2

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ check-rust-examples:
2222

2323
.PHONY: test-unit
2424
test-unit:
25-
RUST_LOG=$(LOG_LEVEL) cargo test --all --no-fail-fast -- --skip integration_tests --nocapture --include-ignored
25+
RUST_LOG=$(LOG_LEVEL) cargo test --all --no-fail-fast -- --skip integration_tests --nocapture
2626

2727
.PHONY: test-integration
2828
test-integration:
29-
RUST_LOG=$(LOG_LEVEL) cargo test --test integration --no-fail-fast -- --nocapture --include-ignored
29+
RUST_LOG=$(LOG_LEVEL) cargo test --test integration --no-fail-fast -- --nocapture
3030

3131
.PHONY: test-e2e
3232
test-e2e:
3333
RUST_LOG=$(LOG_LEVEL) cargo test --test integration --features e2e-tests --no-fail-fast -- integration_tests::test_dependencies --nocapture
34-
RUST_LOG=$(LOG_LEVEL) cargo test --test integration --features e2e-tests --no-fail-fast -- --skip integration_tests::test_dependencies --nocapture --include-ignored
34+
RUST_LOG=$(LOG_LEVEL) cargo test --test integration --features e2e-tests --no-fail-fast -- --skip integration_tests::test_dependencies --nocapture
3535

3636
.PHONY: test-sdk-go
3737
test-sdk-go:

crates/redis/src/tests.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ fn create_trigger_event(channel: &str, payload: &str) -> redis::Msg {
1212
.unwrap()
1313
}
1414

15-
#[ignore]
1615
#[tokio::test]
1716
async fn test_pubsub() -> Result<()> {
1817
let trigger: RedisTrigger = TestConfig::default()

0 commit comments

Comments
 (0)