ci: run each test individually (fix) (#28107)

This commit is contained in:
David Arnold 2024-10-13 03:38:23 +02:00 committed by GitHub
parent 0e1978e5f4
commit c67c1b05cb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 }}'