diff --git a/justfile b/justfile index c9bbb9a2..2f1451f4 100644 --- a/justfile +++ b/justfile @@ -14,9 +14,11 @@ flamegraph: cargo flamegraph --bench lmdb_benchmark firefox ./flamegraph.svg +export MATURIN_PYPI_TOKEN:=`cat ~/.pypi/redb_token` + publish_py: test_py docker pull quay.io/pypa/manylinux2014_x86_64 - docker run -it --rm -v `pwd`:/redb-ro:ro quay.io/pypa/manylinux2014_x86_64 /redb-ro/py_publish.sh + docker run -it --rm -e "MATURIN_PYPI_TOKEN" -v `pwd`:/redb-ro:ro quay.io/pypa/manylinux2014_x86_64 /redb-ro/py_publish.sh test_py: install_py python3 -m unittest discover