From d1aa4e63b2313d7fd961dbad4fbf883308818e99 Mon Sep 17 00:00:00 2001 From: Jun-te Kim Date: Wed, 10 Sep 2025 13:45:18 +0000 Subject: [PATCH] get rid of unused automation scripts --- .github/workflows/pytest.yml | 64 ++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 7109d8f..5d93010 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -1,42 +1,42 @@ -name: Run Pytest +# name: Run Pytest -on: - push: - branches: - - '**' # Run on all branches - pull_request: - branches: - - main +# on: +# push: +# branches: +# - '**' # Run on all branches +# pull_request: +# branches: +# - main -jobs: - etl-unit-tests: - runs-on: ubuntu-22.04 +# jobs: +# etl-unit-tests: +# runs-on: ubuntu-22.04 - steps: - - name: Checkout Repository - uses: actions/checkout@v4 +# steps: +# - name: Checkout Repository +# uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.12' +# - name: Set up Python +# uses: actions/setup-python@v5 +# with: +# python-version: '3.12' - - name: Set up Python - uses: actions/setup-python@v4 - with: - python-version: '3.12' +# - name: Set up Python +# uses: actions/setup-python@v4 +# with: +# python-version: '3.12' - - name: Install dependencies - run: | - pip install poetry - poetry install --no-root +# - name: Install dependencies +# run: | +# pip install poetry +# poetry install --no-root - - name: Run Tests - run: | - poetry run pytest -W ignore::DeprecationWarning - env: - PYTHONPATH: ${{ github.workspace }} +# - name: Run Tests +# run: | +# poetry run pytest -W ignore::DeprecationWarning +# env: +# PYTHONPATH: ${{ github.workspace }} - continue-on-error: ${{ github.event_name == 'push' && github.ref != 'refs/heads/main' }} +# continue-on-error: ${{ github.event_name == 'push' && github.ref != 'refs/heads/main' }}