| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- name: Parallel Tests
- on:
- pull_request:
- branches: [dev, main, master]
- push:
- branches: [dev]
- env:
- PYTHONIOENCODING: utf-8
- PYTHONLEGACYWINDOWSSTDIO: utf-8
- USE_COLOR: False
- jobs:
- discover-tests:
- name: Discover test files
- runs-on: ubuntu-22.04
- outputs:
- test-files: ${{ steps.set-matrix.outputs.test-files }}
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: true
- fetch-depth: 1
- - name: Discover test files
- id: set-matrix
- run: |
- # Find all main test files
- main_tests=$(find tests -maxdepth 1 -name "test_*.py" -type f | sort)
- # Find all plugin test files
- plugin_tests=$(find archivebox/plugins -path "*/tests/test_*.py" -type f | sort)
- # Combine and format as JSON array
- all_tests=$(echo "$main_tests $plugin_tests" | tr ' ' '\n' | grep -v '^$')
- # Create JSON array with test file info
- json_array="["
- first=true
- for test_file in $all_tests; do
- if [ "$first" = true ]; then
- first=false
- else
- json_array+=","
- fi
- # Extract a display name for the test
- if [[ $test_file == tests/* ]]; then
- name="main/$(basename $test_file .py | sed 's/^test_//')"
- else
- plugin=$(echo $test_file | sed 's|archivebox/plugins/\([^/]*\)/.*|\1|')
- test_name=$(basename $test_file .py | sed 's/^test_//')
- name="plugin/$plugin/$test_name"
- fi
- json_array+="{\"path\":\"$test_file\",\"name\":\"$name\"}"
- done
- json_array+="]"
- echo "test-files=$json_array" >> $GITHUB_OUTPUT
- echo "Found $(echo $all_tests | wc -w) test files"
- echo "$json_array" | jq '.'
- run-tests:
- name: ${{ matrix.test.name }}
- runs-on: ubuntu-22.04
- needs: discover-tests
- strategy:
- fail-fast: false
- matrix:
- test: ${{ fromJson(needs.discover-tests.outputs.test-files) }}
- python: ["3.13"]
- steps:
- - uses: actions/checkout@v4
- with:
- submodules: true
- fetch-depth: 1
- - name: Set up Python ${{ matrix.python }}
- uses: actions/setup-python@v4
- with:
- python-version: ${{ matrix.python }}
- architecture: x64
- - name: Install uv
- uses: astral-sh/setup-uv@v4
- with:
- version: "latest"
- - name: Set up Node JS
- uses: actions/setup-node@v4
- with:
- node-version: 22
- - name: Cache uv
- uses: actions/cache@v3
- with:
- path: ~/.cache/uv
- key: ${{ runner.os }}-${{ matrix.python }}-uv-${{ hashFiles('pyproject.toml', 'uv.lock') }}
- restore-keys: |
- ${{ runner.os }}-${{ matrix.python }}-uv-
- - uses: awalsh128/cache-apt-pkgs-action@latest
- with:
- packages: git ripgrep build-essential python3-dev python3-setuptools libssl-dev libldap2-dev libsasl2-dev zlib1g-dev libatomic1 python3-minimal gnupg2 curl wget python3-ldap python3-msgpack python3-mutagen python3-regex python3-pycryptodome procps
- version: 1.1
- - name: Install dependencies with uv
- run: |
- uv sync --dev --all-extras
- - name: Run test - ${{ matrix.test.name }}
- run: |
- uv run pytest -xvs "${{ matrix.test.path }}" --basetemp=tests/out --ignore=archivebox/pkgs
|