Skip to content

Commit

Permalink
Merge branch 'enable-all-tests' of github.com:awslabs/amazon-kinesis-…
Browse files Browse the repository at this point in the history
…video-streams-webrtc-sdk-c into enable-all-tests
  • Loading branch information
jdelapla committed Aug 24, 2023
2 parents dba700e + 87f962f commit 2f9e5a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,19 @@ on:
jobs:
linux-gcc-codecov:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- name: Fetch
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Run code coverage
run: |
mkdir build
Expand Down
2 changes: 1 addition & 1 deletion tst/SignalingApiFunctionalityTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3326,7 +3326,7 @@ TEST_F(SignalingApiFunctionalityTest, fileCachingTest)

/* describeCount and getEndpointCount should only increase by 2 because they are cached for all channels except one and we iterate twice*/
EXPECT_TRUE(describeCount > describeCountNoCache && (describeCount - describeCountNoCache) == 2);
EXPECT_TRUE(getEndpointCount > getEndpointCountNoCache && (getEndpointCount - getEndpointCountNoCache) == 2);
EXPECT_TRUE(getEndpointCount > getEndpointCountNoCache && (getEndpointCount - 2*getEndpointCountNoCache) == 2);
}

TEST_F(SignalingApiFunctionalityTest, fileCachingUpdateCache)
Expand Down

0 comments on commit 2f9e5a1

Please sign in to comment.