634533208e
* Integration tests now have their own list of allowed shebangs. * Use `#!/usr/bin/env bash` instead of `#!/bin/bash` since the location is different on various platforms.
27 lines
347 B
Bash
Executable file
27 lines
347 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# start by removing pycrypto and cryptography
|
|
|
|
pip uninstall -y cryptography
|
|
pip uninstall -y pycrypto
|
|
|
|
./runme.sh
|
|
|
|
# now just pycrypto
|
|
pip install --user pycrypto
|
|
|
|
./runme.sh
|
|
|
|
|
|
# now just cryptography
|
|
|
|
pip uninstall -y pycrypto
|
|
pip install --user cryptography
|
|
|
|
./runme.sh
|
|
|
|
# now both
|
|
|
|
pip install --user pycrypto
|
|
|
|
./runme.sh
|