1 parent 5bfd932 commit 3320930Copy full SHA for 3320930
1 file changed
.github/workflows/omio_tests.yml
@@ -27,11 +27,17 @@ jobs:
27
pip install .
28
pip install pytest pytest-cov
29
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
+
36
- name: Run tests
37
run: |
38
source "$(conda info --base)/etc/profile.d/conda.sh"
39
conda activate omio
- pytest --cov=omio --cov-branch --cov-report=xml
40
+ pytest --cov=omio --cov-branch --cov-report=term --cov-report=xml
41
42
- name: Upload coverage reports to Codecov
43
uses: codecov/codecov-action@v5
0 commit comments