summaryrefslogtreecommitdiffstats
path: root/doc/development
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-10-09 11:06:38 -0400
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-10-09 11:07:00 -0400
commit44ae3c594e13eded116bba977ce1a0bb692906d5 (patch)
tree456053369efe8bfdb9c31cfc583fcd708d5418c4 /doc/development
parente9a889345a9ab1a722aacbd0c638397b000e5ca8 (diff)
downloadbcfg2-44ae3c594e13eded116bba977ce1a0bb692906d5.tar.gz
bcfg2-44ae3c594e13eded116bba977ce1a0bb692906d5.tar.bz2
bcfg2-44ae3c594e13eded116bba977ce1a0bb692906d5.zip
fixed unit testing example commands for Fedora
[ci skip]
Diffstat (limited to 'doc/development')
-rw-r--r--doc/development/unit-testing.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/development/unit-testing.txt b/doc/development/unit-testing.txt
index a4ec2ad5c..926275871 100644
--- a/doc/development/unit-testing.txt
+++ b/doc/development/unit-testing.txt
@@ -86,13 +86,16 @@ instance, would be:
.. code-block:: bash
- yum -y update
- yum -y install swig pylint
+ sudo yum -y update
+ sudo yum -y install swig pylint
if [[ "$WITH_OPTIONAL_DEPS" == "yes" ]]; then
sudo yum -y install libselinux-python pylibacl python-inotify \
PyYAML
fi
+You could install these requirements using pip, but you'll likely need
+to install a great many development packages required to compile them.
+
Next, install required Python packages:
.. code-block:: bash