persistent main UI position and size #266
Workflow file for this run
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 will install Python dependencies and run tests | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | |
name: Test Maya (Linux) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
maya2024: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
container: mottosso/maya:2024 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: pip install | |
run: | | |
wget https://bootstrap.pypa.io/pip/get-pip.py | |
mayapy get-pip.py --user | |
mayapy -m pip install --user \ | |
coverage==5.5 \ | |
-r requirements-dev.txt \ | |
- name: Environment | |
run: | | |
export XDG_RUNTIME_DIR=/var/tmp/runtime-root | |
export MAYA_DISABLE_ADP=1 | |
- name: Test with pytest | |
run: | | |
mayapy ./tests/maya/invoke.py |