From d12e9a958deaabe79f678ccecf8ee585e42559e5 Mon Sep 17 00:00:00 2001 From: Marcin Rudolf Date: Fri, 5 Apr 2024 13:03:31 +0200 Subject: [PATCH] adds csv to docs index --- .github/workflows/test_common.yml | 22 ++++++++++++---------- docs/website/sidebars.js | 1 + 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test_common.yml b/.github/workflows/test_common.yml index c1dfd63004..bd714022c3 100644 --- a/.github/workflows/test_common.yml +++ b/.github/workflows/test_common.yml @@ -52,6 +52,18 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Install tzdata on windows + run: | + cd %USERPROFILE% + curl https://data.iana.org/time-zones/releases/tzdata2021e.tar.gz --output tzdata.tar.gz + mkdir tzdata + tar --extract --file tzdata.tar.gz --directory tzdata + dir %USERPROFILE%\Downloads\ + move tzdata %USERPROFILE%\Downloads\tzdata + curl https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml --output %USERPROFILE%\Downloads\tzdata\windowsZones.xml + if: runner.os == 'Windows' + shell: cmd + - name: Install Poetry # https://github.com/snok/install-poetry#running-on-windows uses: snok/install-poetry@v1.3.2 @@ -111,16 +123,6 @@ jobs: - name: Install pipeline dependencies run: poetry install --no-interaction -E duckdb -E cli -E parquet --with sentry-sdk --with pipeline - - name: Install tzdata on windows - run: | - curl https://data.iana.org/time-zones/releases/tzdata2021e.tar.gz --output tzdata.tar.gz - mkdir tzdata - tar --extract --file tzdata.tar.gz --directory tzdata - move tzdata %USERPROFILE%\Downloads\tzdata - curl https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml --output %USERPROFILE%\Downloads\tzdata\windowsZones.xml - if: runner.os == 'Windows' - shell: cmd - - run: | poetry run pytest tests/extract tests/pipeline tests/libs tests/cli/common tests/destinations if: runner.os != 'Windows' diff --git a/docs/website/sidebars.js b/docs/website/sidebars.js index bc8d16d05a..9776de0818 100644 --- a/docs/website/sidebars.js +++ b/docs/website/sidebars.js @@ -170,6 +170,7 @@ const sidebars = { items: [ 'dlt-ecosystem/file-formats/jsonl', 'dlt-ecosystem/file-formats/parquet', + 'dlt-ecosystem/file-formats/csv', 'dlt-ecosystem/file-formats/insert-format', ] },