Skip to content

Commit

Permalink
Source .profile
Browse files Browse the repository at this point in the history
  • Loading branch information
jitseniesen committed Apr 16, 2023
1 parent 121bd9a commit 7a8249f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,14 +86,20 @@ jobs:
with:
timeout_minutes: 10
max_attempts: 3
command: xvfb-run --auto-servernum pytest spyder_unittest --cov=spyder_unittest --cov-report=xml -vv
shell: bash
command: |
. .profile
xvfb-run --auto-servernum pytest spyder_unittest --cov=spyder_unittest --cov-report=xml -vv
- name: Run tests (Mac / Windows)
if: matrix.OS != 'ubuntu'
uses: nick-fields/retry@v2
with:
timeout_minutes: 10
max_attempts: 3
command: pytest spyder_unittest -x -vv
shell: bash
command: |
. .profile
pytest spyder_unittest -x -vv
- name: Upload coverage to Codecov
if: matrix.OS == 'ubuntu' && matrix.PYTHON_VERSION == '3.10'
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 7a8249f

Please sign in to comment.