Skip to content

Commit a634ca8

Browse files
committed
fix typos
1 parent 10a3cc5 commit a634ca8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Diff for: .github/workflows/check-btcli-tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Bittensor BTCLI Test
22

33
concurrency:
4-
group: e2e-sdk-${{ github.ref }}
4+
group: e2e-cli-${{ github.ref }}
55
cancel-in-progress: true
66

77
permissions:
@@ -37,14 +37,14 @@ jobs:
3737
runs-on: ubuntu-latest
3838
if: ${{ github.event.pull_request.draft == false }}
3939
outputs:
40-
run-sdk-tests: ${{ contains(github.event.pull_request.labels.*.name, 'run-bittensor-cli-tests') }}
40+
run-cli-tests: ${{ contains(github.event.pull_request.labels.*.name, 'run-bittensor-cli-tests') }}
4141
steps:
4242
- name: Check out repository
4343
uses: actions/checkout@v4
4444

4545
find-e2e-tests:
4646
needs: check-labels
47-
if: always() && needs.check-labels.outputs.run-sdk-tests == 'true'
47+
if: always() && needs.check-labels.outputs.run-cli-tests == 'true'
4848
runs-on: ubuntu-latest
4949
outputs:
5050
test-files: ${{ steps.get-tests.outputs.test-files }}
@@ -70,7 +70,7 @@ jobs:
7070
pull-docker-image:
7171
needs: check-labels
7272
runs-on: ubuntu-latest
73-
if: always() && needs.check-labels.outputs.run-sdk-tests == 'true'
73+
if: always() && needs.check-labels.outputs.run-cli-tests == 'true'
7474
steps:
7575
- name: Log in to GitHub Container Registry
7676
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
@@ -93,7 +93,7 @@ jobs:
9393
- find-e2e-tests
9494
- pull-docker-image
9595

96-
if: always() && needs.check-labels.outputs.run-sdk-tests == 'true'
96+
if: always() && needs.check-labels.outputs.run-cli-tests == 'true'
9797
runs-on: ubuntu-latest
9898
strategy:
9999
fail-fast: false
@@ -195,7 +195,7 @@ jobs:
195195
run-unit-test:
196196
needs:
197197
- check-labels
198-
if: always() && needs.check-labels.outputs.run-sdk-tests == 'true'
198+
if: always() && needs.check-labels.outputs.run-cli-tests == 'true'
199199
runs-on: ubuntu-latest
200200
steps:
201201
- name: Check-out repository

Diff for: .github/workflows/check-sdk-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ jobs:
239239
source ${{ github.workspace }}/venv/bin/activate
240240
maturin develop
241241
242-
- name: Run bittensor-cli unit tests
242+
- name: Run bittensor-sdk unit tests
243243
working-directory: ${{ github.workspace }}
244244
run: |
245245
source ${{ github.workspace }}/venv/bin/activate

0 commit comments

Comments
 (0)