Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Some minor wording changes
Browse files Browse the repository at this point in the history
  • Loading branch information
anoadragon453 committed Nov 13, 2020
1 parent de0a3c3 commit af7172e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -259,24 +259,24 @@ to install using pip and a virtualenv::
python3 -m venv ./env
source ./env/bin/activate
pip install -e ".[all,test]"

This will run a process of downloading and installing all the needed
dependencies into a virtual env.
dependencies into a virtual env. If any dependencies fail to install,
try installing the failing modules individually::

Some of the dependencies might have to be installed manually, if you run into errors just install the dependency that is mentioned in the error manually.
pip install -e "module-name"

Once this is done, you may wish to run Synapse's unit tests, to
check that everything is installed as it should be::
Once this is done, you may wish to run Synapse's unit tests to
check that everything is installed correctly::

python -m twisted.trial tests

This should end with a 'PASSED' result::

Ran 1332 tests in 716.064s
This should end with a 'PASSED' result (note that exact numbers will
differ)::

PASSED (skips=15, successes=1317)
Ran 1337 tests in 716.064s

(The amount of tests may change in the future...)
PASSED (skips=15, successes=1322)

Running the Integration Tests
=============================
Expand Down

0 comments on commit af7172e

Please sign in to comment.