summaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorAndrej Shadura <andrewsh@debian.org>2021-06-29 12:59:58 +0200
committerAndrej Shadura <andrewsh@debian.org>2021-06-29 12:59:58 +0200
commit364c37238258580e132178cc7b35acabce3ff326 (patch)
treedadc23431f7f55fd8bcd8780c64b519dae7d5a76 /README.rst
parent219af4a8aef838c5e3689a2aa71cf72f2fd75aa2 (diff)
New upstream version 1.37.0
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst36
1 files changed, 17 insertions, 19 deletions
diff --git a/README.rst b/README.rst
index a14a687f..2ecc93c8 100644
--- a/README.rst
+++ b/README.rst
@@ -142,13 +142,6 @@ the form of::
As when logging in, you will need to specify a "Custom server". Specify your
desired ``localpart`` in the 'User name' box.
-ACME setup
-==========
-
-For details on having Synapse manage your federation TLS certificates
-automatically, please see `<docs/ACME.md>`_.
-
-
Security note
=============
@@ -293,18 +286,6 @@ try installing the failing modules individually::
pip install -e "module-name"
-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 (note that exact numbers will
-differ)::
-
- Ran 1337 tests in 716.064s
-
- PASSED (skips=15, successes=1322)
-
We recommend using the demo which starts 3 federated instances running on ports `8080` - `8082`
./demo/start.sh
@@ -324,6 +305,23 @@ If you just want to start a single instance of the app and run it directly::
python -m synapse.app.homeserver --config-path homeserver.yaml
+Running the unit tests
+======================
+
+After getting up and running, you may wish to run Synapse's unit tests to
+check that everything is installed correctly::
+
+ trial tests
+
+This should end with a 'PASSED' result (note that exact numbers will
+differ)::
+
+ Ran 1337 tests in 716.064s
+
+ PASSED (skips=15, successes=1322)
+
+For more tips on running the unit tests, like running a specific test or
+to see the logging output, see the `CONTRIBUTING doc <CONTRIBUTING.md#run-the-unit-tests>`_.
Running the Integration Tests