@@ -26,35 +26,16 @@ jobs:
26
26
- name : Check out repository
27
27
uses : actions/checkout@v4
28
28
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
-
49
29
run-tests :
50
30
needs :
51
- - find-e2e-tests
52
31
- check-labels
53
32
runs-on : ubuntu-latest
54
33
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 }}
55
36
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
58
39
matrix :
59
40
rust-branch :
60
41
- stable
@@ -118,6 +99,13 @@ jobs:
118
99
source ${{ github.workspace }}/venv/bin/activate
119
100
maturin develop
120
101
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
+
121
109
- name : Clone Subtensor repo
122
110
working-directory : ${{ github.workspace }}
123
111
run : git clone https://github.com/opentensor/subtensor.git
@@ -127,5 +115,7 @@ jobs:
127
115
run : git checkout devnet-ready
128
116
129
117
- name : Run Bittensor SDK e2e test
118
+ working-directory : ${{ github.workspace }}
130
119
run : |
120
+ source ${{ github.workspace }}/venv/bin/activate
131
121
LOCALNET_SH_PATH="${{ github.workspace }}/subtensor/scripts/localnet.sh" pytest ${{ matrix.test-file }} -s
0 commit comments