WIP: flit install fixups #2
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: 'test' | |
on: | |
[push, pull_request] | |
jobs: | |
pytest: | |
name: "Test with PyTest" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: "Install Lightsheet Notebook Dependencies" | |
shell: bash | |
run: | | |
git clone https://github.com/AllenNeuralDynamics/aind-ccf-alignment-experiments.git | |
python -m pip install . | |
- name: "Install Dependencies" | |
shell: bash | |
run: | | |
python -m pip install flit | |
cd src | |
flit install --extras all | |
- name: "Run Tests" | |
shell: bash | |
run: | | |
pytest --nbmake --nbmake-timeout=30000 examples/*.ipynb |