Skip to content

fix reading bug arising in MMStudio #131

fix reading bug arising in MMStudio

fix reading bug arising in MMStudio #131

Workflow file for this run

name: Reader tests
on:
pull_request:
# paths:
# - 'python'
# push:
# push:
# paths:
# - 'python'
# # Cancel actions when new commits are pushed to PR
# concurrency:
# group: ${{ github.head_ref }}
# cancel-in-progress: true
jobs:
test-python-reader:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
os: [
# ubuntu-lastest,
windows-latest,
macos-11
]
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install ./python/[test]
pip install -r python/requirements.txt
- name: Tests
run: |
pytest --color=yes