Skip to content

0.1.0

0.1.0 #404

Workflow file for this run

name: ci-branch-tests
on: push
concurrency:
group: ada-quick-tests-${{ github.ref }}
cancel-in-progress: true
jobs:
test-core:
name: Test ada-py-core
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v1 # https://github.com/mamba-org/setup-micromamba
with:
cache-environment: false
condarc: |
channels:
- conda-forge
- krande
environment-file: conda/environment.core.yml
create-args: >-
python=3.11
pytest
- name: Install latest adapy
run: |
pip install -e .
- name: Runs Tests
run: pytest ./tests --ignore=./tests/fem/ --ignore=./tests/full/
test-full:
name: Test ada-py-full
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v1 # https://github.com/mamba-org/setup-micromamba
with:
cache-environment: false
condarc: |
channels:
- conda-forge
- krande
environment-file: conda/environment.core.yml
create-args: >-
python=3.11
pytest
jupyterlab
pythreejs
pyparsing
websockets
pygfx
pyglfw
- name: Install latest adapy
run: |
pip install -e .
- name: Run Tests
run: pytest ./tests --ignore=./tests/fem/