We don't use nose anywhere in anything related to devstack. The only
legitimate OpenStack things that are still nose are horizon and swift
unittests, and it turns out we don't really run those in devstack.
Change-Id: I215e0f3664f269e0e1b8f5d5f9c70553dededddd
| ... | ... |
@@ -18,7 +18,6 @@ |
| 18 | 18 |
# - (re)start messagebus daemon |
| 19 | 19 |
# - remove distro packages python-crypto and python-lxml |
| 20 | 20 |
# - pre-install hgtools to work around a bug in RHEL6 distribute |
| 21 |
-# - install nose 1.1 from EPEL |
|
| 22 | 21 |
|
| 23 | 22 |
# If TOP_DIR is set we're being sourced rather than running stand-alone |
| 24 | 23 |
# or in a sub-shell |
| ... | ... |
@@ -179,14 +178,6 @@ if [[ $DISTRO =~ (rhel6) ]]; then |
| 179 | 179 |
# Note we do this before the track-depends in ``stack.sh``. |
| 180 | 180 |
pip_install hgtools |
| 181 | 181 |
|
| 182 |
- |
|
| 183 |
- # RHEL6's version of ``python-nose`` is incompatible with Tempest. |
|
| 184 |
- # Install nose 1.1 (Tempest-compatible) from EPEL |
|
| 185 |
- install_package python-nose1.1 |
|
| 186 |
- # Add a symlink for the new nosetests to allow tox for Tempest to |
|
| 187 |
- # work unmolested. |
|
| 188 |
- sudo ln -sf /usr/bin/nosetests1.1 /usr/local/bin/nosetests |
|
| 189 |
- |
|
| 190 | 182 |
# workaround for https://code.google.com/p/unittest-ext/issues/detail?id=79 |
| 191 | 183 |
install_package python-unittest2 patch |
| 192 | 184 |
pip_install discover |