Skip to content

Bug fix for geometries without bounding box #44

Bug fix for geometries without bounding box

Bug fix for geometries without bounding box #44

# This CI will lauch a Docker image that contains all the dependencies required
# within that image the pytest test suite is run
name: CI with install
on:
pull_request:
branches:
- develop
- main
paths:
- "**.py"
- "**.ipynb"
- "**.yml"
- "**.cfg"
- "**.toml"
- "**.sh"
jobs:
testing:
runs-on: ubuntu-latest
container:
image: openmc/openmc:latest-dagmc
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: install package with tests
run: |
pip install .[tests]
- name: Run tests
run: |
cd tests
pytest -v