From af07e85b7c817a9529dea2128a22d3c46ad6e362 Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 13 Jan 2026 16:08:03 -0800 Subject: [PATCH 1/2] Experiment --- .github/workflows/smoke-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index b1bb21f99..175f5ec05 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -174,7 +174,9 @@ jobs: if: ${{ !cancelled() }} run: | cd build/temp*/src/main - find . -type f -name "*.o" -execdir gcov {} \; + # find . -type f -name "*.o" -execdir gcov {} \; + pip install gcovr + gcovr - name: Move aerospike_helpers coverage report to this directory if: ${{ !cancelled() }} From 076de25963d03a93f2b25839fac2be1d021bb9fe Mon Sep 17 00:00:00 2001 From: Julian Nguyen <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 13 Jan 2026 16:14:24 -0800 Subject: [PATCH 2/2] Make tests short --- .github/workflows/smoke-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/smoke-tests.yml b/.github/workflows/smoke-tests.yml index 175f5ec05..965bebb18 100644 --- a/.github/workflows/smoke-tests.yml +++ b/.github/workflows/smoke-tests.yml @@ -136,7 +136,7 @@ jobs: registry-username: ${{ env.REGISTRY_NAME == 'docker.io' && secrets.DOCKER_HUB_BOT_USERNAME || secrets.QE_DOCKER_REGISTRY_USERNAME }} registry-password: ${{ env.REGISTRY_NAME == 'docker.io' && secrets.DOCKER_HUB_BOT_PW || secrets.QE_DOCKER_REGISTRY_PASSWORD }} - - run: python3 -m pytest --cov=aerospike_helpers --cov-report xml:coverage.xml ./new_tests + - run: python3 -m pytest --cov=aerospike_helpers --cov-report xml:coverage.xml ./new_tests/test_get_put.py working-directory: test - name: Copy over source files to build dir