Skip to content

some Tango.py refactoring #1784

some Tango.py refactoring

some Tango.py refactoring #1784

Workflow file for this run

---
name: Pytest
"on":
pull_request:
types: [opened, reopened, synchronize]
jobs:
Python:
runs-on: ubuntu-24.04
permissions:
contents: read
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: >-
Setup Conda environment with Micromamba
for Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@v2
with:
cache-environment: true
create-args: >-
python=${{ matrix.python-version }}
environment-file: conda-environment-dev.yml
post-cleanup: all
- name: Install dependencies
run: >
${MAMBA_EXE} run --name mxcubecore
poetry install --only=dev,main
- name: Test with pytest
run: >
${MAMBA_EXE} run --name mxcubecore
pytest --no-cov