Python 3.13 testing and other revisions to the CI suite #1577
Workflow file for this run
This file contains 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: Run Unit Tests | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
push: | |
branches: | |
- "main" | |
- "nanobind" | |
- "next" | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} | |
jobs: | |
run_tests: | |
name: Unit test [py${{ matrix.python }} ${{ matrix.os }}] | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python: ['39', '310', '311', '312', '313'] | |
include: | |
# Test macOS and windows on oldest and latest versions. | |
- os: 'macos-14' | |
python: '312' | |
- os: 'windows-latest' | |
python: '312' | |
- os: 'windows-latest' | |
python: '39' | |
- os: 'macos-14' | |
python: '39' | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: true | |
- name: Create Python Environment | |
uses: mamba-org/setup-micromamba@f8b8a1e23a26f60a44c853292711bacfd3eac822 # v1.9.0 | |
with: | |
micromamba-version: '1.5.8-0' | |
environment-name: test | |
environment-file: .github/workflows/environments/py${{ matrix.python }}-conda-lock.yml | |
- name: Build and Install freud | |
run: | | |
uv pip install . --no-build-isolation --no-deps -v | |
- name: Run Tests | |
run: | | |
# Enable tests only for nanobind-converted modules | |
pytest tests/test_box_box.py -v | |
pytest tests/test_parallel.py -v | |
pytest tests/test_locality_*.py -v | |
pytest tests/test_data.py -v | |
pytest tests/test_pmft.py -v | |
pytest tests/test_util.py -v | |
pytest tests/test_interface.py -v | |
pytest tests/test_msd_msd.py -v | |
pytest tests/test_cluster.py -v | |
# pytest tests/ -v | |
tests_complete: | |
name: All tests | |
if: always() | |
needs: [run_tests] | |
runs-on: ubuntu-latest | |
steps: | |
- run: jq --exit-status 'all(.result == "success")' <<< '${{ toJson(needs) }}' | |
- name: Done | |
run: echo "Done." |