Remove Redundant pm.parent Call in createGhostCtl to Fix Error with mgear.pymaya #739
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
# This workflow runs code tests using Pytest on with Python 3 | |
name: Code Tests & Coverage (Python 3) | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
mayapy -m pip install -i https://test.pypi.org/simple/ pymel | |
mayapy -m pip install pytest pytest-cov | |
- name: Run code tests | |
run: | | |
mayapy -m pytest |