diff options
author | AlexSm <81806911+alexv-smirnov@users.noreply.github.com> | 2023-05-17 18:08:21 +0000 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-05-17 21:08:21 +0300 |
commit | 87f871fd00376448bfac32965d739d4f446f64de (patch) | |
tree | 7e7095c54385e3c28d0edd89973b36a27b22f641 | |
parent | 06d41c8ae0d06c6b8532cff54b513a4f10e3db0c (diff) | |
download | ydb-87f871fd00376448bfac32965d739d4f446f64de.tar.gz |
"Revert logprefix change"
"Revert logprefix change"
Pull Request resolved: #217
-rw-r--r-- | .github/workflows/build_and_test_provisioned.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build_and_test_provisioned.yml b/.github/workflows/build_and_test_provisioned.yml index e27af3ecbdc..c156115f34b 100644 --- a/.github/workflows/build_and_test_provisioned.yml +++ b/.github/workflows/build_and_test_provisioned.yml @@ -58,7 +58,7 @@ jobs: uses: ./.github/actions/test if: inputs.run_unit_tests with: - log_suffix: ${{format('{0}{1}{2}', inputs.runner_label, inputs.sanitizer, 'unit')}} + log_suffix: ${{format('{0}{1}', inputs.runner_label, inputs.sanitizer)}} test_label_regexp: ${{ inputs.test_label_regexp }} aws_key_id: ${{secrets.AWS_KEY_ID}} aws_key_value: ${{secrets.AWS_KEY_VALUE}} @@ -70,7 +70,7 @@ jobs: if: inputs.run_functional_tests && (success() || failure()) && steps.build.conclusion != 'failure' uses: ./.github/actions/test_python with: - log_suffix: ${{format('{0}{1}{2}', inputs.runner_label, inputs.sanitizer, 'functional')}} + log_suffix: ${{format('{0}{1}', inputs.runner_label, inputs.sanitizer)}} test_label_regexp: ${{ inputs.test_label_regexp }} aws_key_id: ${{secrets.AWS_KEY_ID}} aws_key_value: ${{secrets.AWS_KEY_VALUE}} |