From 6946739e3516e22d12a92bed6bb6e1ec94b1fd20 Mon Sep 17 00:00:00 2001 From: Leonardo Schwarz Date: Fri, 8 Nov 2024 10:15:35 +0100 Subject: [PATCH] revert system test in CI for now --- .github/workflows/pr-checks.yml | 43 ++++++++++++--------------------- 1 file changed, 15 insertions(+), 28 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 4af739f..43aa2a5 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -23,31 +23,18 @@ jobs: run: pip install nox[uv] - name: Run unit tests run: nox - system_tests: - name: System Tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: 3.12 - - name: Install nox - shell: bash - run: pip install nox[uv] - - name: Run system tests - run: nox -s system_tests -# - name: Code style -# run: ruff check || true -# if: success() || failure() -#code_style: -# name: Code Style -# runs-on: ubuntu-latest -# steps: -# - uses: actions/checkout@v4 -# - uses: ./.github/actions/setup-depiction -# with: -# python-version: 3.11 -# - name: Check code with ruff -# run: -# ruff check || true + # TODO add this later with synthetic or shared test data + #system_tests: + # name: System Tests + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - name: Set up Python + # uses: actions/setup-python@v5 + # with: + # python-version: 3.12 + # - name: Install nox + # shell: bash + # run: pip install nox[uv] + # - name: Run system tests + # run: nox -s system_tests