Skip to content

Commit fa33016

Browse files
authored
Merge pull request #674 from bashtage/attempt-dynamic-version
Add sdist and wheel tests
2 parents 9bd8775 + 609ebd6 commit fa33016

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ci/azure_template_posix.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1213
jobs:
@@ -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: |

0 commit comments

Comments
 (0)