Fixed subset function in SampledObs for multiple local devices. #38
Workflow file for this run
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: Automatic testing | |
on: | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run-tests: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup MPI | |
uses: mpi4py/setup-mpi@v1 | |
- name: Install stuff | |
run: | | |
python -m pip install --upgrade pip | |
pip install -e .[dev] | |
- name: Run tests | |
run: pytest tests/ |