micropipenv/tests/example/test_install.sh
Lukáš Zachar b329230fd2 Use 'osci' for gating
Use same plan/test as c9s
2026-07-03 09:53:25 +02:00

12 lines
172 B
Bash
Executable File

#!/bin/bash
set -e
pushd /tmp/micropipenv/tests/data/install/"$1"/
python3 -m venv venv
source venv/bin/activate
micropipenv install
pip3 list
deactivate
rm -rf venv
popd