File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 5050 # rust-model,
5151 # rust-sdk
5252 ]
53+ include :
54+ - concurrency-count-override : 8
55+ sdk-name : python-sdk
56+
5357 steps :
5458 # Note: this step is meant for when running on ubuntu-latest
5559 - name : Remove Bloat
9599 - name : Save Seed Test Log to File
96100 id : save-seed-test-log-to-file
97101 run : |
98- pnpm seed:local test --generator ${{ matrix.sdk-name }} --parallel 16 --allow-unexpected-failures > ${{ matrix.sdk-name }}-seed-test-log.txt
102+ # Default to 16 concurrent fixtures if not overridden. In the case of python-sdk,
103+ # the virtual environments take up too much space so this needs to be limited
104+ pnpm seed:local test --generator ${{ matrix.sdk-name }} --parallel ${{ matrix.concurrency-count-override || 16 }} --allow-unexpected-failures > ${{ matrix.sdk-name }}-seed-test-log.txt
105+
106+ # CHRISM - consideration
107+ # - name: Cleanup Virtualenvs
108+ # run: |
109+ # find . -name "fern-*" -type d | head -10 | xargs rm -rf
99110
100111 - name : Upload Seed Test Log as Artifact
101112 uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments