all-tests: feature-tests remote-tests
feature-tests:
../../ci/run_with_docker_compose.sh \
cargo test --all-features --tests --locked --examples $(CARGO_ARGS)
.PHONY: feature-tests
remote-tests:
../../ci/run_with_test_connection.sh \
cargo test --features remote --locked $(CARGO_ARGS)
.PHONY: remote-tests