Skip to content

Commit 1a8c880

Browse files
committed
Troubleshoot CI
1 parent f002584 commit 1a8c880

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/conda-test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ jobs:
4545
conda info
4646
conda list
4747
48+
- name: install package
49+
run: |
50+
pip install -e .
51+
4852
- name: get plannotate dbs
4953
shell: bash -l {0}
5054
run: |

.github/workflows/python-package-conda.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,20 @@ jobs:
2323
environment-file: environment.yml
2424
generate-run-shell: true
2525
cache-downloads: true
26-
26+
2727
- name: Install pytest
2828
run: |
2929
micromamba install -n plannotate pytest
30-
30+
31+
- name: install package
32+
run: |
33+
pip install -e .
34+
3135
- run: |
3236
python -c "from plannotate.resources import download_databases; download_databases()"
3337
shell: micromamba-shell {0}
34-
38+
3539
- run: |
3640
pytest --version
3741
pytest
38-
shell: micromamba-shell {0}
42+
shell: micromamba-shell {0}

0 commit comments

Comments
 (0)