Don't store sub-groups where not needed in regex and other processing optimisations #141
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
name: "Corpus regressions" | |
on: pull_request | |
jobs: | |
regression: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.x" | |
- name: Install dependencies | |
run: | | |
sudo apt update && sudo apt install -y python3-graphviz | |
python -m pip install --upgrade pip | |
pip install .[tests] | |
pip install pytest-xdist fypp | |
- name: Test known repos | |
run: | | |
pytest -n auto -m slow -vv |