From 7be64a749a9c3cce31d19f3f85acf9954cfbc0a2 Mon Sep 17 00:00:00 2001 From: Jonathan Guyer Date: Wed, 10 May 2023 10:18:56 -0400 Subject: [PATCH] Log environment Hard to do regression testing when you don't know what was installed. Why is Azure so useless? --- .azure/pipelines.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.azure/pipelines.yml b/.azure/pipelines.yml index 8e76820568..b9e20329e7 100644 --- a/.azure/pipelines.yml +++ b/.azure/pipelines.yml @@ -233,6 +233,10 @@ stages: sudo apt-get --yes install texlive-extra-utils displayName: Install LaTeX + - bash: | + conda env export --name myEnvironment + displayName: Environment + - bash: | source activate myEnvironment export ETS_TOOLKIT=null @@ -291,6 +295,10 @@ stages: displayName: Build wheel condition: startsWith(variables.image, 'ubuntu') + - bash: | + conda env export --name myEnvironment + displayName: Environment + - bash: | source activate myEnvironment python setup.py release --unix