This repository was archived by the owner on Apr 26, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -261,18 +261,22 @@ to install using pip and a virtualenv::
261261 pip install -e ".[all,test]"
262262
263263This will run a process of downloading and installing all the needed
264- dependencies into a virtual env.
264+ dependencies into a virtual env. If any dependencies fail to install,
265+ try installing the failing modules individually::
265266
266- Once this is done, you may wish to run Synapse's unit tests, to
267- check that everything is installed as it should be::
267+ pip install -e "module-name"
268+
269+ Once this is done, you may wish to run Synapse's unit tests to
270+ check that everything is installed correctly::
268271
269272 python -m twisted.trial tests
270273
271- This should end with a 'PASSED' result::
274+ This should end with a 'PASSED' result (note that exact numbers will
275+ differ)::
272276
273- Ran 1266 tests in 643.930s
277+ Ran 1337 tests in 716.064s
274278
275- PASSED (skips=15, successes=1251 )
279+ PASSED (skips=15, successes=1322 )
276280
277281Running the Integration Tests
278282=============================
Original file line number Diff line number Diff line change 1+ Add some helpful hints to the README for new Synapse developers. Contributed by @chagai95.
You can’t perform that action at this time.
0 commit comments