Unverified Commit 55a1536e authored by John DiSanti's avatar John DiSanti Committed by GitHub
Browse files

Run non-service SDK integration tests in CI (#2884)

This fixes #2880.

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
parent 5129fb3a
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -7,3 +7,10 @@
set -eux
cd aws-sdk-smoketest
cargo test --all-features

for test_dir in tests/*; do
    if [ -f "${test_dir}/Cargo.toml" ]; then
        echo "#### Testing ${test_dir}..."
        cargo test --all-features --manifest-path "${test_dir}/Cargo.toml"
    fi
done