Bug: Use multiprocess when on mac, and multiprocessing otherwise #23
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: Runs unit tests | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
unit-tests: | |
runs-on: titan | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pytest | |
run: pip install pytest | |
- name: Install alma package | |
run: pip install . | |
- name: PyTest | |
run: | | |
python -m pytest |