Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

Create __init__.py #1521

Create __init__.py

Create __init__.py #1521

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Integration Tests
on:
push:
branches: [ main ]
pull_request:
types: [labeled, opened, synchronize, reopened]
jobs:
build:
if: |
github.event_name == 'push' ||
( github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'integration' ))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2.2.0
with:
python-version: "3.11"
mamba-version: "*"
miniforge-variant: Mambaforge
channels: conda-forge
channel-priority: strict
auto-update-conda: true
environment-file: .ci_support/environment-notebooks-integration.yml
- name: Setup
shell: bash -l {0}
run: |
pip install --no-deps .
- name: Tests
shell: bash -l {0}
run: python -m unittest discover tests/integration/damask tests/integration/fenicsx