diff --git a/.github/actions/setup-uv/action.yml b/.github/actions/setup-uv/action.yml index e0bc8627d..90971b49d 100644 --- a/.github/actions/setup-uv/action.yml +++ b/.github/actions/setup-uv/action.yml @@ -19,12 +19,3 @@ runs: uses: actions/setup-python@v5 with: python-version: ${{ inputs.python-version }} - - - name: Restore uv cache - uses: actions/cache@v4 - with: - path: /tmp/.uv-cache - key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - restore-keys: | - uv-${{ runner.os }}-${{ hashFiles('uv.lock') }} - uv-${{ runner.os }} diff --git a/.github/workflows/python_test.yml b/.github/workflows/python_test.yml index 095f6b782..b9ec6e7af 100644 --- a/.github/workflows/python_test.yml +++ b/.github/workflows/python_test.yml @@ -33,8 +33,6 @@ jobs: build: name: Unit Tests - Python ${{ matrix.python-version }} - Group ${{ matrix.group }} runs-on: ubuntu-latest - env: - UV_CACHE_DIR: /tmp/.uv-cache strategy: matrix: python-version: ${{ fromJson(inputs.python-versions || '["3.10", "3.11", "3.12", "3.13"]' ) }} diff --git a/.github/workflows/store_pytest_durations.yml b/.github/workflows/store_pytest_durations.yml index deba0f9d0..bcea975da 100644 --- a/.github/workflows/store_pytest_durations.yml +++ b/.github/workflows/store_pytest_durations.yml @@ -20,7 +20,6 @@ jobs: OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} ASTRA_DB_API_ENDPOINT: ${{ secrets.ASTRA_DB_API_ENDPOINT }} ASTRA_DB_APPLICATION_TOKEN: ${{ secrets.ASTRA_DB_APPLICATION_TOKEN }} - UV_CACHE_DIR: /tmp/.uv-cache steps: - uses: actions/checkout@v4 - name: "Setup Environment" diff --git a/.github/workflows/typescript_test.yml b/.github/workflows/typescript_test.yml index 68d82d9ce..bb4039042 100644 --- a/.github/workflows/typescript_test.yml +++ b/.github/workflows/typescript_test.yml @@ -256,7 +256,6 @@ jobs: ANTHROPIC_API_KEY: "${{ secrets.ANTHROPIC_API_KEY }}" TAVILY_API_KEY: "${{ secrets.TAVILY_API_KEY }}" LANGFLOW_DEACTIVE_TRACING: "true" - UV_CACHE_DIR: /tmp/.uv-cache outputs: failed: ${{ steps.check-failure.outputs.failed }} steps: diff --git a/pyproject.toml b/pyproject.toml index e05f60344..6f2ad66ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -236,7 +236,7 @@ filterwarnings = ["ignore::DeprecationWarning", "ignore::ResourceWarning"] log_cli = true log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)" log_cli_date_format = "%Y-%m-%d %H:%M:%S" -markers = ["async_test", "api_key_required"] +markers = ["async_test", "api_key_required", "benchmark"] asyncio_mode = "auto" asyncio_default_fixture_loop_scope = "function"