Fix tailing newline by not created it in the first place

This commit is contained in:
Laurent Indermuehle 2023-01-05 19:44:22 +01:00
commit 42fe4baf18
No known key found for this signature in database
GPG key ID: 93FA944C9F34DD09
3 changed files with 8 additions and 8 deletions

View file

@ -125,9 +125,9 @@ jobs:
ansible-core-version: ${{ matrix.ansible }}
pre-test-cmd: >-
>&2 echo Setting db_engine_version to ${{ matrix.db_engine_version }}...;
echo "${{ matrix.db_engine_version }}" > tests/integration/db_engine_version;
echo -n "${{ matrix.db_engine_version }}" > tests/integration/db_engine_version;
>&2 echo Setting Connector version to ${{ matrix.connector }}...;
echo "${{ matrix.connector }}" > tests/integration/connector
echo -n "${{ matrix.connector }}" > tests/integration/connector
target-python-version: ${{ matrix.python }}
testing-type: integration