Skip to content

Commit 1e65c5b

Browse files
committed
Add debug tracing to CI test
Adding a pip freeze to find which dependencies changed significantly Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent 325874c commit 1e65c5b

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

azure-pipelines.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,18 @@ jobs:
8484
image_name: ubuntu-20.04
8585
python_versions: ["3.8", "3.9", "3.10", "3.11"]
8686
test_suites:
87-
all:
88-
venv/bin/pip install --upgrade-strategy eager --force-reinstall
89-
--upgrade -e . && venv/bin/pytest -n 2 -vvs
87+
all: |
88+
venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .
89+
venv/bin/pip freeze
90+
venv/bin/pytest -n 2 -vvs
9091
9192
- template: etc/ci/azure-win.yml
9293
parameters:
9394
job_name: win2019_cpython_latest_from_pip
9495
image_name: windows-2019
9596
python_versions: ["3.8", "3.9", "3.10", "3.11"]
9697
test_suites:
97-
all:
98-
venv\Scripts\pip install --upgrade-strategy eager --force-reinstall
99-
--upgrade -e . && venv\Scripts\pytest -n 2 -vvs
98+
all: |
99+
venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .
100+
venv\Scripts\pip freeze
101+
venv\Scripts\pytest -n 2 -vvs

0 commit comments

Comments
 (0)