Added fast_sdid which runs signficantly faster #59
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: Testing | |
on: [push] | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install azcausal | |
run: | | |
pip install '.[full]' | |
rm -rf azcausal | |
- name: Install pytest | |
run: | | |
pip install pytest papermill | |
- name: Run Tests | |
run: | | |
pytest -v --maxfail 1 | |