Skip to content

Commit 3320930

Browse files
fix: add debug step for OMIO import in GitHub Actions workflow
1 parent 5bfd932 commit 3320930

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/omio_tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,17 @@ jobs:
2727
pip install .
2828
pip install pytest pytest-cov
2929
30+
- name: Debug OMIO import
31+
run: |
32+
source "$(conda info --base)/etc/profile.d/conda.sh"
33+
conda activate omio
34+
python -c "import omio; print('omio imported from:', omio.__file__)"
35+
3036
- name: Run tests
3137
run: |
3238
source "$(conda info --base)/etc/profile.d/conda.sh"
3339
conda activate omio
34-
pytest --cov=omio --cov-branch --cov-report=xml
40+
pytest --cov=omio --cov-branch --cov-report=term --cov-report=xml
3541
3642
- name: Upload coverage reports to Codecov
3743
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)