From cbbe2fc641f83798e7172f742006965fff1834c1 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Sat, 11 Nov 2023 13:59:56 -0500 Subject: [PATCH] DNM: Add a debug step for inspecting pytest output directly on windows --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 76d0018..91555af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -63,6 +63,11 @@ jobs: ${{ runner.os }}-${{ matrix.python-version }} - name: Install Deps run: python -m pip install -U 'tox<4' setuptools virtualenv wheel + - name: Test windows stuff + run: | + tox -epy --notest + .tox/py/Scripts/python -m pytest --subunit --rootdir="./" "./stestr/tests" --co + if: runner.os == 'Windows' - name: Install and Run Tests run: tox -e py -- --pytest if: runner.os != 'macOS'