Skip to content

Commit 3f1f2bc

Browse files
committed
sdk checker
1 parent 15cee77 commit 3f1f2bc

File tree

1 file changed

+13
-23
lines changed

1 file changed

+13
-23
lines changed

.github/workflows/pr-checks.yml .github/workflows/check_sdk_tests.yml

+13-23
Original file line numberDiff line numberDiff line change
@@ -26,35 +26,16 @@ jobs:
2626
- name: Check out repository
2727
uses: actions/checkout@v4
2828

29-
find-e2e-tests:
30-
runs-on: ubuntu-latest
31-
outputs:
32-
test-files: ${{ steps.get-tests.outputs.test-files }}
33-
steps:
34-
- name: Research preparation
35-
working-directory: ${{ github.workspace }}
36-
run: git clone https://github.com/opentensor/bittensor.git
37-
38-
- name: Checkout
39-
working-directory: ${{ github.workspace }}/bittensor
40-
run: git checkout staging
41-
42-
- name: Find e2e test files
43-
id: get-tests
44-
run: |
45-
test_files=$(find ${{ github.workspace }}/bittensor/tests/e2e_tests -name "test*.py" | jq -R -s -c 'split("\n") | map(select(. != ""))')
46-
echo "::set-output name=test-files::$test_files"
47-
shell: bash
48-
4929
run-tests:
5030
needs:
51-
- find-e2e-tests
5231
- check-labels
5332
runs-on: ubuntu-latest
5433
if: ${{ github.event_name == 'pull_request' && github.event.pull_request.draft == false && needs.check-labels.outputs.run-sdk-tests == 'true' }}
34+
outputs:
35+
test-files: ${{ steps.get-tests.outputs.test-files }}
5536
strategy:
56-
fail-fast: false # Allow other matrix jobs to run even if this job fails
57-
max-parallel: 8 # Set the maximum number of parallel jobs
37+
fail-fast: false
38+
max-parallel: 8
5839
matrix:
5940
rust-branch:
6041
- stable
@@ -118,6 +99,13 @@ jobs:
11899
source ${{ github.workspace }}/venv/bin/activate
119100
maturin develop
120101
102+
- name: Find e2e test files
103+
id: get-tests
104+
run: |
105+
test_files=$(find ${{ github.workspace }}/bittensor/tests/e2e_tests -name "test*.py" | jq -R -s -c 'split("\n") | map(select(. != ""))')
106+
echo "::set-output name=test-files::$test_files"
107+
shell: bash
108+
121109
- name: Clone Subtensor repo
122110
working-directory: ${{ github.workspace }}
123111
run: git clone https://github.com/opentensor/subtensor.git
@@ -127,5 +115,7 @@ jobs:
127115
run: git checkout devnet-ready
128116

129117
- name: Run Bittensor SDK e2e test
118+
working-directory: ${{ github.workspace }}
130119
run: |
120+
source ${{ github.workspace }}/venv/bin/activate
131121
LOCALNET_SH_PATH="${{ github.workspace }}/subtensor/scripts/localnet.sh" pytest ${{ matrix.test-file }} -s

0 commit comments

Comments
 (0)