summaryrefslogtreecommitdiff
path: root/integration-tests/openstackclient-stable.sh
blob: e2e29cb809604c4bf5f61e1354db81c9f955489b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh -x

set -e

envdir=$1

# Manually download the source from PyPI and build it with the --editable flag.
# This gives us access to run the tests.
pip install --pre --no-deps --no-install --no-clean python-openstackclient

# This is where the source will end up after pip is done downloading and building it
srcdir=$envdir/build/python-openstackclient/
cd $srcdir

# Install the source safely
pip install --no-clean -ve .

# Install the test requirements
pip install --no-clean -r $srcdir/test-requirements.txt

# Run testr
python setup.py testr