Skip to content

debug

debug #252

Workflow file for this run

name: Regression Test
on: [push]
permissions:
contents: read
jobs:
test:
name: Regression Test
runs-on: self-hosted
strategy:
fail-fast: false
matrix:
python: ["python3.14"]
steps:
- name: Clear workspace
run: rm -rf "${GITHUB_WORKSPACE:?}/*"
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 1
show-progress: false
persist-credentials: false
- name: Set version statically
run: |
VERSION=0.0.0
sed -i "s/setup_requires=.*/version='$VERSION',/; s/use_scm_version=.*//" setup.py
- name: Run tests
uses: ./.github/actions/run-in-container
with:
image: danielflook/python-minifier-build:${{ matrix.python }}-2025-08-21
run: |
if [[ "${{ matrix.python }}" == "python3.4" ]]; then
(cd /usr/lib64/python3.4/test && python3.4 make_ssl_certs.py)
elif [[ "${{ matrix.python }}" == "python3.5" ]]; then
(cd /usr/lib64/python3.5/test && python3.5 make_ssl_certs.py)
elif [[ "${{ matrix.python }}" == "pypy3" ]]; then
(cd /usr/lib64/pypy3-7.0/lib-python/3/test && pypy3 make_ssl_certs.py)
fi
printenv
tox -r -e $(echo "${{ matrix.python }}" | tr -d .) -- xtest