Print Preview #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pytest CI | |
on: | |
push: | |
branches: [ version-14 ] | |
pull_request: | |
branches: [ version-14 ] | |
env: | |
BRANCH_NAME: ${{ github.base_ref || github.ref_name }} | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
fail-fast: false | |
name: Server | |
services: | |
mysql: | |
image: mariadb:10.6 | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: YES | |
MYSQL_ROOT_PASSWORD: 'admin' | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
check-latest: true | |
cache: 'yarn' # Replaces `Get yarn cache directory path` and `yarn-cache` steps | |
- name: Add to Hosts | |
run: echo "127.0.0.1 test_site" | sudo tee -a /etc/hosts | |
- name: Cache pip | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/*requirements.txt', '**/pyproject.toml', '**/setup.py', '**/setup.cfg') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
${{ runner.os }}- | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-node-modules | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: Install JS Dependencies | |
run: yarn --prefer-offline | |
- name: Install App Dependencies | |
run: bash ${{github.workspace}}/.github/helper/install_dependencies.sh | |
- name: Install Bench Site and Apps | |
env: | |
MYSQL_HOST: 'localhost' | |
MYSQL_PWD: 'admin' | |
BRANCH_NAME: ${{ env.BRANCH_NAME}} | |
run: | | |
bash ${{ github.workspace }}/.github/helper/install.sh | |
- name: Run Tests | |
working-directory: /home/runner/frappe-bench | |
run: | | |
source env/bin/activate | |
pytest ./apps/check_run/check_run/tests/ --disable-warnings -s |