Skip to content

The default AxisType returned by make_mesh is going to change to AxisType.Explicit in a follow up CL. This change makes it so that the current code falls back to the old behavior. #289

The default AxisType returned by make_mesh is going to change to AxisType.Explicit in a follow up CL. This change makes it so that the current code falls back to the old behavior.

The default AxisType returned by make_mesh is going to change to AxisType.Explicit in a follow up CL. This change makes it so that the current code falls back to the old behavior. #289

Workflow file for this run

name: Run Unit Tests
on:
push:
branches: [ "main", "master" ]
pull_request:
branches: [ "main", "master" ]
workflow_dispatch:
jobs:
run_tests:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # If you have a requirements.txt file
- name: Run Pytest
run: |
export KERAS_BACKEND=jax
python -m pytest -v