File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ check-rust-examples:
22
22
23
23
.PHONY : test-unit
24
24
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
26
26
27
27
.PHONY : test-integration
28
28
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
30
30
31
31
.PHONY : test-e2e
32
32
test-e2e :
33
33
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
35
35
36
36
.PHONY : test-sdk-go
37
37
test-sdk-go :
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ fn create_trigger_event(channel: &str, payload: &str) -> redis::Msg {
12
12
. unwrap ( )
13
13
}
14
14
15
- #[ ignore]
16
15
#[ tokio:: test]
17
16
async fn test_pubsub ( ) -> Result < ( ) > {
18
17
let trigger: RedisTrigger = TestConfig :: default ( )
You can’t perform that action at this time.
0 commit comments