Skip to content

Fix test.yml

Fix test.yml #241

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
#----------------------------------------------
# check-out repo and install OS deps
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v2
- name: Set up python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Setup OpenGL
run: |
sudo apt-get update
sudo apt-get install libegl1
- name: Setup Libexmpi
run: |
sudo apt-get update
sudo apt-get install libexempi8
#----------------------------------------------
# ----- install & configure poetry -----
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
#----------------------------------------------
# load cached venv if cache exists
#----------------------------------------------
- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v2
with:
path: .venv
key: venv-0-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --extras "openai taming docs" --no-interaction --no-root
#----------------------------------------------
# install root project
#----------------------------------------------
- name: Install library
run: poetry install --extras "openai taming docs" --no-interaction
#----------------------------------------------
# lint
#----------------------------------------------
- name: Lint with ruff
uses: jpetrucciani/ruff-check@main
#----------------------------------------------
# run test suite
#----------------------------------------------
- name: Run tests
run: |
source .venv/bin/activate
coverage run --source paraphernalia -m pytest
coverage report