Skip to content

Commit 7e75066

Browse files
committed
fix: Add PYTHONPATH to GitHub Actions workflows
1 parent 706f497 commit 7e75066

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/python-app.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,7 @@ jobs:
2626
pip install pytest
2727
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2828
- name: Test with pytest
29+
env:
30+
PYTHONPATH: .
2931
run: |
3032
pytest tests/

.github/workflows/q_refine_benchmark.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
pip install qiskit qiskit-aer matplotlib numpy
2525
2626
- name: Run Q-Refine Enterprise Pipeline
27+
env:
28+
PYTHONPATH: .
2729
run: |
2830
python q_refine_pipeline.py
2931

0 commit comments

Comments
 (0)