File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -179,9 +179,8 @@ jobs:
179
179
python-version : " ${{ matrix.python }}"
180
180
- run : " scripts/Sync-Py.ps1 -Version '${{ matrix.python }}'"
181
181
# ! https://github.com/pytest-dev/pytest-cov/issues/479#issuecomment-1247444988
182
- - if : startsWith(matrix.runner, 'windows')
183
- run : " . scripts/Initialize-Shell.ps1; pytest --cov --cov-config pyproject.toml"
184
- - if : startsWith(matrix.runner, 'windows') && matrix.python == '3.11'
182
+ - run : " . scripts/Initialize-Shell.ps1; pytest --cov --cov-config pyproject.toml"
183
+ - if : startsWith(matrix.runner, 'ubuntu') && matrix.python == '3.11'
185
184
uses : " codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c" # v4.4.1
186
185
env :
187
186
CODECOV_TOKEN : " ${{ secrets.CODECOV_TOKEN }}"
Original file line number Diff line number Diff line change 4
4
from contextlib import suppress
5
5
from csv import DictReader , DictWriter
6
6
from datetime import datetime , timedelta
7
- from os import environ
8
7
from pathlib import Path
9
8
from tempfile import NamedTemporaryFile
10
9
from textwrap import dedent
39
38
40
39
from boilerdaq .shim import t_in , v_in
41
40
42
- environ ["QT_QPA_PLATFORM" ] = "xcb"
41
+ # environ["QT_QPA_PLATFORM"] = "xcb"
43
42
if not get_daq_device_inventory (InterfaceType .USB ): # pyright: ignore[reportArgumentType]
44
43
from boilerdaq .dummy import t_in , v_in
45
44
except FileNotFoundError :
You can’t perform that action at this time.
0 commit comments