Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

min moab version #60

Merged
merged 10 commits into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions .github/workflows/ci_with_install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,39 +35,40 @@ jobs:
sudo apt-get upgrade -y
sudo apt-get install -y libgl1-mesa-glx libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0
mamba activate
mamba create --name cad_to_dagmc python=3.12
mamba create -y --name cad_to_dagmc python=3.10
mamba activate cad_to_dagmc
mamba install -y -c conda-forge moab gmsh python-gmsh ocp=7.7.2.0 cadquery=2.4.0
mamba install -y -c conda-forge moab>=5.3.0 gmsh python-gmsh ocp=7.7.2.0 cadquery=2.4.0
python -m pip install --upgrade pip
python -m pip install .
python -c "import cad_to_dagmc"
python -m pip install .[tests]
pytest tests/test_file_creation.py
pytest tests/test_loading_from_file_vs_shape_object.py
pytest tests/test_match.py
pytest tests/test_python_api.py
pytest tests/test_version.py
pytest -v tests/test_file_creation.py
pytest -v tests/test_loading_from_file_vs_shape_object.py
pytest -v tests/test_python_api.py
pytest -v tests/test_version.py
cd examples/surface_mesh
python create_stp_files_for_examples.py
python cadquery_assembly.py
python cadquery_compound.py
python cadquery_object_and_stp_file.py
python cadquery_text.py
python curved_cadquery_object_to_dagmc_surface_mesh.py
python curved_cadquery_object_to_dagmc_volume_mesh.py
python multiple_cadquery_objects.py
python multiple_stp_files.py
python single_stp_file_multiple_volumes.py
python single_cadquery_object.py
python single_stp_file.py
rm *.h5m
pytest tests/test_model_creation_for_transport.py
cd ../..
cd examples/unstrucutred_volume_mesh
python curved_cadquery_object_to_dagmc_volume_mesh.py
cd ../..
pytest -v tests/test_model_creation_for_transport.py
mamba activate base
mamba create --name openmc python=3.12
mamba create -y --name openmc python=3.10
mamba activate openmc
mamba install -y -c conda-forge "openmc=0.14.0=dagmc*nompi*"
pytest tests/test_package.py
pytest tests/test_h5m_in_simulation.py
pytest tests/test_h5m_in_transport.py
python -m pip install pytest
pytest -v tests/test_h5m_in_simulation.py
pytest -v tests/test_h5m_in_transport.py
cd examples/unstrucutred_volume_mesh
python simulate_unstrucutred_volume_mesh_with_openmc.py
39 changes: 0 additions & 39 deletions tests/test_match.py

This file was deleted.

Loading