File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ check-rust-examples:
2222
2323.PHONY : test-unit
2424test-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
2828test-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
3232test-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
3737test-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 {
1212 . unwrap ( )
1313}
1414
15- #[ ignore]
1615#[ tokio:: test]
1716async fn test_pubsub ( ) -> Result < ( ) > {
1817 let trigger: RedisTrigger = TestConfig :: default ( )
You can’t perform that action at this time.
0 commit comments