Skip to content

Commit fd6a5be

Browse files
committed
build: build scripts update
1 parent 5b09879 commit fd6a5be

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ci/utils/build.ps1

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,7 @@ $python_versions.Split(" ") | ForEach {
3232
}
3333
}
3434
}
35-
pytest -vvx
35+
If($action -ne "tools") {
36+
# no sdist on Windows
37+
pytest -vvx
38+
}

ci/utils/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ do
3030
fi
3131
done
3232
if [[ $1 != tools ]]; then
33+
# build sdist on Linux
3334
python -m build --no-isolation --sdist --outdir dist
3435
pytest -vvx
3536
fi

0 commit comments

Comments
 (0)