Catalog Check #406
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: Catalog Check | |
| on: | |
| schedule: | |
| - cron: "0 8 * * *" | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| catalog: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: 3.12 | |
| architecture: x64 | |
| - name: Install dependencies | |
| run: pip install -r test-suite/requirements.txt | |
| - name: Test Catalog | |
| working-directory: test-suite | |
| # not using: --run-flavours --run-flavour__maxi --run-all_flavour --run-title_len --run-description_len --run-name_pattern | |
| run: pytest -vvv test_catalog.py --run-filename_pattern --run-publisher --run-author --run-flavour__mini --run-flavour__nopic |