git.delta.rocks / unique-network / refs/commits / e3ab829f07f9

difftreelog

Update node-only-update_v3.yml

Alex2022-10-18parent: #2fc4ab6.patch.diff
in: master

1 file changed

modified.github/workflows/node-only-update_v3.ymldiffbeforeafterboth
153 shell: bash153 shell: bash
154154
155 - name: Run Parallel tests on Node Parachain155 - name: Run Parallel tests on Node Parachain
156 working-directory: ${{ matrix.mainnet_branch }}/tests156 working-directory: tests
157 run: |157 run: |
158 yarn install158 yarn install
159 yarn add mochawesome159 yarn add mochawesome
169 if: success() || failure() # run this step even if previous step failed169 if: success() || failure() # run this step even if previous step failed
170 with:170 with:
171 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created171 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created
172 path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-parallel-*.json # Path to test results172 path: tests/mochawesome-report/test-parallel-*.json # Path to test results
173 reporter: mochawesome-json173 reporter: mochawesome-json
174 fail-on-error: 'false'174 fail-on-error: 'false'
175 175
176 - name: Run Sequential tests on Node Parachain176
177 working-directory: ${{ matrix.mainnet_branch }}/tests
178 run: |
179 yarn install
180 yarn add mochawesome
181 echo "Ready to start tests"
182 yarn polkadot-types
183 NOW=$(date +%s) && yarn testSequential --reporter mochawesome --reporter-options reportFilename=test-sequential-${NOW}
184 env:
185 RPC_URL: http://127.0.0.1:9933/
186
187 - name: Sequential Tests report
188 uses: phoenix-actions/test-reporting@v8
189 id: test-report-sequential
190 if: success() || failure() # run this step even if previous step failed
191 with:
192 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created
193 path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-sequential-*.json # Path to test results
194 reporter: mochawesome-json
195 fail-on-error: 'false'
196
197 - name: Stop running containers177 - name: Stop running containers
198 if: always() # run this step always178 if: always() # run this step always
324 shell: bash304 shell: bash
325305
326 - name: Run Sequential tests on Node Parachain306 - name: Run Sequential tests on Node Parachain
327 working-directory: ${{ matrix.mainnet_branch }}/tests307 working-directory: tests
328 run: |308 run: |
329 yarn install309 yarn install
330 yarn add mochawesome310 yarn add mochawesome
340 if: success() || failure() # run this step even if previous step failed320 if: success() || failure() # run this step even if previous step failed
341 with:321 with:
342 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created322 name: Parallel Tests report - ${{ matrix.network }} # Name of the check run which will be created
343 path: ${{ matrix.mainnet_branch }}/tests/mochawesome-report/test-sequential-*.json # Path to test results323 path: tests/mochawesome-report/test-sequential-*.json # Path to test results
344 reporter: mochawesome-json324 reporter: mochawesome-json
345 fail-on-error: 'false'325 fail-on-error: 'false'
346 326