Skip to content

Move dependencies to pyproject toml and create ci/cd install and import test #16

Move dependencies to pyproject toml and create ci/cd install and import test

Move dependencies to pyproject toml and create ci/cd install and import test #16

# cicd workflow for running tests with pytest
# needs to first install pdm, then install torch cpu manually and then install the package
# then run the tests
name: test (pip install, cpu)
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install torch (CPU)
run: |
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
- name: Install package (including dev dependencies)
run: |
python -m pip install .
# pip can't install from "dev" pdm group in pyproject.toml, should we put these requirements
# for running tests in a separate group? Using "dev" ensures that the these requirements aren't
# included in build packages
python -m pip install pytest pooch
- name: Print and check torch version
run: |
python -c "import torch; print(torch.__version__)"
python -c "import torch; assert torch.__version__.endswith('+cpu')"
- name: Load cache data
uses: actions/cache/restore@v4
with:
path: data
key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0
restore-keys: |
${{ runner.os }}-meps-reduced-example-data-v0.1.0
- name: Run tests
run: |
python -m pytest
- name: Save cache data
uses: actions/cache/save@v4
with:
path: data
key: ${{ runner.os }}-meps-reduced-example-data-v0.1.0