Skip to content

Changed w_sqrt to handle 0 weights for nondiff and diff #13

Changed w_sqrt to handle 0 weights for nondiff and diff

Changed w_sqrt to handle 0 weights for nondiff and diff #13

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python.
# It will use conda for dependency management, see
# https://autobencoder.com/2020-08-24-conda-actions/
name: Pytest
permissions:
contents: read
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
$CONDA/bin/conda env update --file environment.yml --name base
- name: Test with pytest
run: |
$CONDA/bin/pytest .