We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b09879 commit fd6a5beCopy full SHA for fd6a5be
ci/utils/build.ps1
@@ -32,4 +32,7 @@ $python_versions.Split(" ") | ForEach {
32
}
33
34
35
-pytest -vvx
+If($action -ne "tools") {
36
+ # no sdist on Windows
37
+ pytest -vvx
38
+}
ci/utils/build.sh
@@ -30,6 +30,7 @@ do
30
fi
31
done
if [[ $1 != tools ]]; then
+ # build sdist on Linux
python -m build --no-isolation --sdist --outdir dist
pytest -vvx
0 commit comments