Startup failure is not helpful #513
Workflow file for this run
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: Unit Test | |
on: [push] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python: ["python2.7", "python3.3", "python3.4", "python3.5", "python3.6", "python3.7", "python3.8", "python3.9", "python3.10", "python3.11", "python3.12", "python3.13", "pypy", "pypy3"] | |
steps: | |
- 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 }}-2024-09-15 | |
run: | | |
tox -r -e $(echo "${{ matrix.python }}" | tr -d .) | |
test-windows: | |
name: Test Windows | |
runs-on: windows-2022 | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
fetch-depth: 1 | |
show-progress: false | |
persist-credentials: false | |
- name: Set up Python | |
if: ${{ matrix.python-version != '2.7' }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up Python | |
if: ${{ matrix.python-version == '2.7' }} | |
uses: LizardByte/actions/actions/setup_python@eddc8fc8b27048e25040e37e3585bd3ef9a968ed # master | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set version statically | |
shell: powershell | |
run: | | |
$content = Get-Content setup.py | |
$content = $content -replace "setup_requires=.*", "version='0.0.0'," | |
$content = $content -replace "use_scm_version=.*", "" | |
Set-Content setup.py $content | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Run tests | |
run: | | |
tox -c tox-windows.ini -r -e ${{ matrix.python-version }} |