Skip to content

Commit 0886e73

Browse files
committed
[HACK] Remove pytest-subtests from CI workflows
pytest-subtests breaks output capture from unittest-style subtests. Disable it for now to get error output. Bug: pytest-dev/pytest-subtests#26
1 parent 47be6cd commit 0886e73

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.github/workflows/cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
- name: Run pip
8888
run: |
8989
export PATH=/usr/bin:/usr/local/bin:$(cygpath ${SYSTEMROOT})/system32
90-
python3 -m pip --disable-pip-version-check install gcovr fastjsonschema pefile pytest pytest-subtests pytest-xdist
90+
python3 -m pip --disable-pip-version-check install gcovr fastjsonschema pefile pytest pytest-xdist
9191
shell: C:\cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}'
9292

9393
- uses: actions/cache/save@v4

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- run: |
3636
export PATH="$HOME/Library/Python/3.9/bin:$PATH"
3737
/usr/bin/python3 -m pip install --upgrade pip
38-
/usr/bin/python3 -m pip install pytest pytest-xdist pytest-subtests fastjsonschema
38+
/usr/bin/python3 -m pip install pytest pytest-xdist fastjsonschema
3939
- run: brew install pkg-config ninja llvm qt@5
4040
- env:
4141
CPPFLAGS: "-I/opt/homebrew/include"

.github/workflows/msys2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
9191
- name: Install dependencies
9292
run: |
93-
python3 -m pip --disable-pip-version-check install gcovr pefile pytest pytest-subtests pytest-xdist
93+
python3 -m pip --disable-pip-version-check install gcovr pefile pytest pytest-xdist
9494
9595
- name: Install pypy3 on x86_64
9696
run: |

ci/ciimage/common.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ set -x
1313
base_python_pkgs=(
1414
pytest
1515
pytest-xdist
16-
pytest-subtests
1716
coverage
1817
fastjsonschema
1918
)

ci/run.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ python --version
9292

9393
# Needed for running unit tests in parallel.
9494
echo ""
95-
python -m pip --disable-pip-version-check install --upgrade pefile pytest-xdist pytest-subtests fastjsonschema
95+
python -m pip --disable-pip-version-check install --upgrade pefile pytest-xdist fastjsonschema
9696

9797
# Needed for running the Cython tests
9898
python -m pip --disable-pip-version-check install cython

0 commit comments

Comments
 (0)