Add new function to split the table generated in the end of the repor… #96
This file contains hidden or 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: Python test | |
| on: push | |
| jobs: | |
| test: | |
| name: Run unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - | |
| name: Check out the repo | |
| uses: actions/checkout@v4 | |
| - | |
| name: Set up Python 3.12.8 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.12.8 | |
| - | |
| name: Install dependencies | |
| run: pip install -r requirements.txt -r requirements-test.txt | |
| - | |
| name: Unit testing | |
| uses: pavelzw/pytest-action@v2 | |
| with: | |
| verbose: true | |
| emoji: true | |
| job-summary: true | |
| custom-arguments: -q | |
| click-to-expand: true | |
| report-title: 'PRONTO unit testing' |