Skip to content

chore: remove extra paren #369

chore: remove extra paren

chore: remove extra paren #369

Workflow file for this run

name: pytest-workflow Check
on: [push]
jobs:
pytest_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install miniwdl and pytest-workflow
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: filter tests
run: |
find tests -name '*.yaml' -exec yq --output-format yaml -i 'del(.[] | select(.tags[] | test("reference|deprecated|cellranger") ) )' {} \;
- name: Run pytest-workflow
run: |
pytest --git-aware --basetemp /home/runner/work/pytest --symlink