Skip to content

Added "Merge identical nodes" and "Apply armature modifier" options to the UI and the rig edit generator function #241

Added "Merge identical nodes" and "Apply armature modifier" options to the UI and the rig edit generator function

Added "Merge identical nodes" and "Apply armature modifier" options to the UI and the rig edit generator function #241

Workflow file for this run

name: Run Pytest
on:
push:
paths-ignore:
- .gitignore
- .vscode/**
- .idea/**
- README.md
- version.txt
pull_request:
jobs:
run-pytest:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Install GitHub plugins
run: |
pip install pytest-github-actions-annotate-failures
- name: Run Tests
run: pytest
run-pytest-verbose:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set Up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Run Tests
run: pytest --verbose -o log_cli=true
- name: Get APPDATA
run: echo ("APPDATA_TEMP=" + $env:LOCALAPPDATA + "\Temp") >> $env:GITHUB_ENV
- name: Upload Temp
uses: actions/upload-artifact@v3
with:
name: pytest-tmp
path: |
${{ env.APPDATA_TEMP }}/pytest**
- name: Upload Log
uses: actions/upload-artifact@v3
with:
name: pytest-log
path: |
${{ github.workspace }}/logs/pytest.log