12 lines
172 B
Bash
Executable File
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
|