ci: run each test individually (fix) (#28107)
This commit is contained in:
parent
0e1978e5f4
commit
c67c1b05cb
1 changed files with 13 additions and 3 deletions
16
.github/workflows/run-indinvidual-tests.yml
vendored
16
.github/workflows/run-indinvidual-tests.yml
vendored
|
|
@ -118,11 +118,21 @@ jobs:
|
|||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
|
||||
- name: Install
|
||||
run: bash ${GITHUB_WORKSPACE}/.github/helper/install.sh
|
||||
- name: Install Dependencies
|
||||
run: |
|
||||
bash ${GITHUB_WORKSPACE}/.github/helper/install_dependencies.sh
|
||||
|
||||
- name: Init Bench
|
||||
run: |
|
||||
bash ${GITHUB_WORKSPACE}/.github/helper/install_bench.sh
|
||||
env:
|
||||
DB: mariadb
|
||||
TYPE: server
|
||||
- name: Init Test Site
|
||||
run: |
|
||||
bash ${GITHUB_WORKSPACE}/.github/helper/install_site.sh
|
||||
env:
|
||||
TYPE: server
|
||||
DB: mariadb
|
||||
|
||||
- name: Run Tests
|
||||
run: 'cd ~/frappe-bench/ && bench --site test_site run-tests --app frappe --module ${{ matrix.test }}'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue