Skip to content

reduce test

reduce test #906

Workflow file for this run

name: Test Build
on:
push:
paths-ignore:
- 'docs/**'
pull_request:
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
os: [ubuntu-latest]
steps:
- uses: "actions/checkout@v4"
with:
submodules: 'true'
- uses: "actions/setup-python@v5"
with:
allow-prereleases: true
python-version: "${{ matrix.python-version }}"
- name: build
run: |
pip install . -v
- name: Install testing dependencies
run: |
python -m pip install --upgrade pip
pip install pytest hypothesis pandas mypy pyright pyinstaller[hook_testing]
- name: test cx_freeze packaging
if: matrix.python-version != '3.13'
working-directory: tests/freezeTools
run: |
pip install cx_freeze
cxfreeze --script script.py --target-dir cxfreezeDist
ls
ls ./cxFreezeDist
./cxFreezeDist/script