Skip to content

Switched the method names in the test and added a getTaggedGmsh examp… #23

Switched the method names in the test and added a getTaggedGmsh examp…

Switched the method names in the test and added a getTaggedGmsh examp… #23

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests-with-conda-install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v3
with:
python-version: 3.11
mamba-version: "*"
activate-environment: tagged-meshes
channels: conda-forge,defaults
channel-priority: true
environment-file: environment.yml
- shell: bash -el {0}
run: |
mamba info
python -m pytest -v
- name: Upload output meshes as artifacts for inspection
uses: actions/upload-artifact@v3
with:
name: exported-meshes
path: "*.msh"
tests-with-pip-install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libglu1-mesa
- name: Install dependencies
run: |
python -m pip install .[dev]
- name: Run tests
run: python -m pytest -v