Skip to content

Commit 5430b70

Browse files
ci: bump astral-sh/setup-uv from 6 to 7 in the actions group (#8)
* ci: bump astral-sh/setup-uv from 6 to 7 in the actions group Bumps the actions group with 1 update: [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v6...v7) --- updated-dependencies: - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent d1983cb commit 5430b70

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
- name: Install uv
43-
uses: astral-sh/setup-uv@v6
43+
uses: astral-sh/setup-uv@v7
4444
- name: Test with pytest
4545
env:
4646
UV_PYTHON: ${{ matrix.python-version }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Built with the [Meltano Mapper SDK](https://sdk.meltano.com) for Singer Mappers.
1313
- Adding properties pertaining to [Fivetran system columns](https://fivetran.com/docs/core-concepts/system-columns-and-tables)
1414
- `_fivetran_id`: MD5-hash of a record, added when no `key_properties` are defined for the stream
1515
- `_fivetran_synced`: ISO8601 timestamp of when the record was initally extracted, or otherwise processed by the mapper
16-
- `_fivetran_deleted`: boolean to indicate soft-delete
16+
- `_fivetran_deleted`: boolean to indicate soft-delete
1717

1818
<!--
1919

tests/test_stream_map.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def test_transform__sdc_extracted_at(stream_map: FivetranStreamMap, column_name)
4040
assert SystemColumns.FIVETRAN_SYNCED in transformed_record
4141
assert datetime.fromisoformat(transformed_record[SystemColumns.FIVETRAN_SYNCED])
4242

43+
4344
@pytest.mark.parametrize(
4445
"column_name",
4546
["_sdc_extracted_at", "_SDC_EXTRACTED_AT"],
@@ -73,6 +74,7 @@ def test_transform__sdc_deleted_at(stream_map: FivetranStreamMap, column_name):
7374
assert SystemColumns.FIVETRAN_DELETED in transformed_record
7475
assert transformed_record[SystemColumns.FIVETRAN_DELETED] is True
7576

77+
7678
@pytest.mark.parametrize(
7779
"column_name",
7880
["_sdc_deleted_at", "_SDC_DELETED_AT"],

0 commit comments

Comments
 (0)