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.
maturin develop
cargo build
1 parent ca8b055 commit bb004eeCopy full SHA for bb004ee
1 file changed
dev/release/verify-release-candidate.sh
@@ -125,15 +125,19 @@ test_source_distribution() {
125
git clone https://github.com/apache/arrow-testing.git testing
126
git clone https://github.com/apache/parquet-testing.git parquet-testing
127
128
- cargo build
129
- cargo test --all
+ python3 -m venv venv
+ source venv/bin/activate
130
+ python3 -m pip install -U pip
131
+ python3 -m pip install -r requirements-310.txt
132
+ maturin develop
133
+
134
+ #TODO: we should really run tests here as well
135
+ #python3 -m pytest
136
137
if ( find -iname 'Cargo.toml' | xargs grep SNAPSHOT ); then
138
echo "Cargo.toml version should not contain SNAPSHOT for releases"
139
exit 1
140
fi
-
- cargo publish --dry-run
141
}
142
143
TEST_SUCCESS=no
0 commit comments