From 609ebd6d7a6ab93978c1dec704f27f0ad2b653b8 Mon Sep 17 00:00:00 2001 From: Kevin Sheppard Date: Fri, 17 Oct 2025 10:11:03 +0100 Subject: [PATCH] Add sdist and wheel tests --- ci/azure_template_posix.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/azure_template_posix.yml b/ci/azure_template_posix.yml index 8c238137d5..b960249638 100644 --- a/ci/azure_template_posix.yml +++ b/ci/azure_template_posix.yml @@ -7,6 +7,7 @@ parameters: # defaults for any parameters that are not specified name: '' vmImage: '' + BUILD_FLAGS: '' jobs: @@ -112,7 +113,7 @@ jobs: python -m build --sdist . -v SDIST=$(ls -t ./dist/linearmodels-*.tar.gz | head -1) pip install ${SDIST} -v - displayName: 'Install linearmodels (site-packages)' + displayName: 'Install linearmodels (site-packages, sdist)' condition: eq(variables['test.sdist'], 'true') - script: | @@ -120,7 +121,7 @@ jobs: python -m pip wheel . --wheel-dir ./dist/ WHL=$(ls -t ./dist/linearmodels-*.whl | head -1) pip install ${WHL} -v - displayName: 'Install linearmodels (site-packages)' + displayName: 'Install linearmodels (site-packages, wheel)' condition: eq(variables['test.wheel'], 'true') - script: |