Skip to content

Commit d89b621

Browse files
committed
rm coverage
1 parent 11a6a53 commit d89b621

2 files changed

Lines changed: 11 additions & 6 deletions

File tree

.github/workflows/feature_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
SFDX_HUB_USERNAME: ${{ secrets.SFDX_HUB_USERNAME }}
9696
- name: Run robot tests
9797
run: |
98-
uv run coverage run --append $(which cci) task run robot \
98+
uv run cci task run robot \
9999
--org dev \
100100
-o name "CumulusCI" \
101101
-o suites cumulusci/robotframework/tests \

.github/workflows/release_test.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,13 @@ jobs:
7777
python-version: 3.11
7878
cache: pip
7979
cache-dependency-path: "pyproject.toml"
80+
- name: Set up uv
81+
uses: SFDO-Tooling/setup-uv@main
82+
with:
83+
version: "0.5.0"
84+
enable-cache: true
8085
- name: Install Python dependencies
81-
run: pip install .[test]
86+
run: uv sync
8287
- name: Install sfdx
8388
run: |
8489
mkdir sfdx
@@ -95,17 +100,17 @@ jobs:
95100
- name: Run ci_feature flow
96101
run: |
97102
cd CumulusCI-Test
98-
coverage run --append --rcfile=../pyproject.toml --source=../cumulusci $(which cci) flow run ci_feature --org scratch --delete-org
103+
uv run cci flow run ci_feature --org scratch --delete-org
99104
- name: Run ci_beta flow
100105
run: |
101106
cd CumulusCI-Test
102-
coverage run --append --rcfile=../pyproject.toml --source=../cumulusci $(which cci) flow run ci_beta --org scratch --delete-org
107+
uv run cci flow run ci_beta --org scratch --delete-org
103108
- name: Run ci_master flow
104109
run: |
105110
cd CumulusCI-Test
106-
coverage run --append --rcfile=../pyproject.toml --source=../cumulusci $(which cci) flow run ci_master --org scratch --delete-org
111+
uv run cci flow run ci_master --org scratch --delete-org
107112
- name: Run release_beta flow
108113
run: |
109114
export SFDX_HUB_KEY="$(echo $SFDX_HUB_KEY_BASE64 | base64 --decode)"
110115
cd CumulusCI-Test
111-
coverage run --append --rcfile=../pyproject.toml --source=../cumulusci $(which cci) flow run release_beta --org packaging
116+
uv run cci flow run release_beta --org packaging

0 commit comments

Comments
 (0)