ci: install dev requirements in CI

This commit is contained in:
Ankush Menat 2021-10-20 14:43:39 +05:30 committed by Ankush Menat
parent 261f80c5ca
commit 92c0dcc3ea
2 changed files with 5 additions and 0 deletions

View File

@ -37,6 +37,9 @@ sed -i 's/socketio:/# socketio:/g' Procfile
sed -i 's/redis_socketio:/# redis_socketio:/g' Procfile sed -i 's/redis_socketio:/# redis_socketio:/g' Procfile
bench get-app erpnext "${GITHUB_WORKSPACE}" bench get-app erpnext "${GITHUB_WORKSPACE}"
if [ "$TYPE" == "server" ]; then bench setup requirements --dev; fi
bench start &> bench_run_logs.txt & bench start &> bench_run_logs.txt &
bench --site test_site reinstall --yes bench --site test_site reinstall --yes
bench build --app frappe bench build --app frappe

View File

@ -91,6 +91,8 @@ jobs:
- name: Install - name: Install
run: bash ${GITHUB_WORKSPACE}/.github/helper/install.sh run: bash ${GITHUB_WORKSPACE}/.github/helper/install.sh
env:
TYPE: server
- name: Run Tests - name: Run Tests
run: cd ~/frappe-bench/ && bench --site test_site run-parallel-tests --app erpnext --use-orchestrator --with-coverage run: cd ~/frappe-bench/ && bench --site test_site run-parallel-tests --app erpnext --use-orchestrator --with-coverage