File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ parameters:
77 # defaults for any parameters that are not specified
88 name : ' '
99 vmImage : ' '
10+ BUILD_FLAGS : ' '
1011
1112
1213jobs :
@@ -112,15 +113,15 @@ jobs:
112113 python -m build --sdist . -v
113114 SDIST=$(ls -t ./dist/linearmodels-*.tar.gz | head -1)
114115 pip install ${SDIST} -v
115- displayName: 'Install linearmodels (site-packages)'
116+ displayName: 'Install linearmodels (site-packages, sdist )'
116117 condition: eq(variables['test.sdist'], 'true')
117118
118119 - script : |
119120 echo "Installing to site packages (wheel)"
120121 python -m pip wheel . --wheel-dir ./dist/
121122 WHL=$(ls -t ./dist/linearmodels-*.whl | head -1)
122123 pip install ${WHL} -v
123- displayName: 'Install linearmodels (site-packages)'
124+ displayName: 'Install linearmodels (site-packages, wheel )'
124125 condition: eq(variables['test.wheel'], 'true')
125126
126127 - script : |
You can’t perform that action at this time.
0 commit comments