Skip to content

Commit

Permalink
Call from correct python
Browse files Browse the repository at this point in the history
  • Loading branch information
ToveRumar committed Jan 11, 2025
1 parent 70f6c52 commit e0bfc94
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/CI_experiment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- name: Check out sources
uses: actions/checkout@v4

- name: Setup python environment
run: |
$(brew --prefix)/bin/python${PYTHON_VERSION} -m venv venv
Expand All @@ -35,12 +35,16 @@ jobs:
venv/bin/pip install pytest
venv/bin/pip install pytest-qt
- name: install dependencies
run: |
venv/bin/pip list
- name: Install client
run: |
venv/bin/pip install -e .
- name: Run test suite
run: pytest --verbose --html=${{env.TEST_FILE}}.html --junit-xml ${{env.TEST_FILE}}.xml
run: venv/bin/python -m pytest --verbose --html=${{env.TEST_FILE}}.html --junit-xml ${{env.TEST_FILE}}.xml

- name: Upload test file
if: always()
Expand Down

0 comments on commit e0bfc94

Please sign in to comment.