From 3e13966205ead02ab7b44ccbbf65df3151aca1dc Mon Sep 17 00:00:00 2001 From: Katrina Anderson <3422688+Trinaa@users.noreply.github.com> Date: Thu, 23 Jan 2025 15:19:37 -0500 Subject: [PATCH] fix(ci): path for integration test artifact (#832) Adjusting the `Integration Tests` step to only copy over the JUnit XML file we need, to the path we expect. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 347fc0ae..bad6530a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -174,7 +174,7 @@ jobs: name: Integration tests (Bigtable) command: | make integration-test - cp -r ~/project/tests/integration ~/project/workspace/test-results + cp ~/project/tests/integration/integration_test_results.xml ~/project/workspace/test-results/integration_test_results.xml - store_artifacts: path: ~/project/workspace/test-results/integration_test_results.xml destination: integration_test_results.xml