Skip to content

Add link to results on Zenodo #3

Add link to results on Zenodo

Add link to results on Zenodo #3

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Tests
on:
push:
branches: [ "main"]
pull_request:
branches: [ "main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Conda
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
echo "DIVOPTPATH=$(pwd)" >> $GITHUB_ENV
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -e .
bash setup.sh
- name: Test with pytest
run: |
python -m pytest test/test_memory.py test/test_scoring_function.py
# cannot yet run test/test_optimizers.py as conda won't work from
# inside the python script for some reason.