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