From d0d48311ad3e00280ee92261ae4bab1b08b82f75 Mon Sep 17 00:00:00 2001 From: James Estevez Date: Fri, 15 Nov 2024 16:09:47 -0800 Subject: [PATCH] 8th time's the charm --- .github/workflows/slow_integration_tests.yml | 4 ++-- Makefile | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/slow_integration_tests.yml b/.github/workflows/slow_integration_tests.yml index 8a2cb7f2fb..73c27c5767 100644 --- a/.github/workflows/slow_integration_tests.yml +++ b/.github/workflows/slow_integration_tests.yml @@ -57,7 +57,7 @@ jobs: - name: Delete scratch org if: always() run: | - cci org scratch_delete pytest + uv run cci org scratch_delete pytest robot_ui: name: "Robot: ${{ matrix.job-name }}" runs-on: SFDO-Tooling-Ubuntu @@ -83,7 +83,7 @@ jobs: cache: pip cache-dependency-path: "pyproject.toml" - name: Install Python dependencies - run: pip install .[test] + run: pip install . - name: Install Salesforce CLI run: | mkdir sfdx diff --git a/Makefile b/Makefile index 2c84e6a13e..19b7ada463 100644 --- a/Makefile +++ b/Makefile @@ -64,13 +64,13 @@ coverage: ## check code coverage quickly with the default Python $(BROWSER) htmlcov/index.html vcr: # remake VCR cassettes and run other integration tests - cci org scratch qa pytest - cci org scratch_delete pytest + uv run cci org scratch qa pytest + uv run cci org scratch_delete pytest find . -name \Test*.yaml | xargs rm uv run pytest --org qa --run-slow-tests -rs --replace-vcrs slow_tests: vcr # remake VCR cassettes and run other integration tests - cci org scratch_delete pytest + uv run cci org scratch_delete pytest pytest integration_tests/ --org pytest -rs docs: ## generate Sphinx HTML documentation