Add documentation on the blender extension #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: [push] | |
jobs: | |
run_tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- uses: mamba-org/setup-micromamba@v2 | |
with: | |
environment-file: micromamba_env.yml | |
cache-environment: true | |
post-cleanup: 'none' | |
- name: Install pip dependencies | |
run: | | |
micromamba run -n protein-runway pip install -r requirements.txt | |
- name: Run library tests | |
run: | | |
micromamba run -n protein-runway python -m unittest tests/*_test.py | |
- name: Run blender tests | |
run: | | |
cd blender/extension/ | |
micromamba run -n protein-runway python -m unittest tests/*_test.py |