mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Minor updates to docs on how to run tests (#8666)
The test runner isn't present in the `[all]` set of extras, so the previous instructions did not work without also installing `[test]`. Note that this does not include the `[lint]` extras, since those do not install on all supported Python versions (specifically, isort 5.x requires Python 3.6, while we still support 3.5). Instructions for that are included in our pull request template, so we should be fine there. I've also dropped the `--no-use-pep517` arg to `pip install` since it seems to have been added to address a temporary regression in pip 19.1 which was fixed in pip 19.1.1 the following month. Lastly, updated the example output of the test suite to set more realistic expectations around run time. Signed-off-by: Dan Callahan <danc@element.io>
This commit is contained in:
parent
88e1d0c52b
commit
e90fad5cba
10
README.rst
10
README.rst
@ -256,9 +256,9 @@ directory of your choice::
|
|||||||
Synapse has a number of external dependencies, that are easiest
|
Synapse has a number of external dependencies, that are easiest
|
||||||
to install using pip and a virtualenv::
|
to install using pip and a virtualenv::
|
||||||
|
|
||||||
virtualenv -p python3 env
|
python3 -m venv ./env
|
||||||
source env/bin/activate
|
source ./env/bin/activate
|
||||||
python -m pip install --no-use-pep517 -e ".[all]"
|
pip install -e ".[all,test]"
|
||||||
|
|
||||||
This will run a process of downloading and installing all the needed
|
This will run a process of downloading and installing all the needed
|
||||||
dependencies into a virtual env.
|
dependencies into a virtual env.
|
||||||
@ -270,9 +270,9 @@ check that everything is installed as it should be::
|
|||||||
|
|
||||||
This should end with a 'PASSED' result::
|
This should end with a 'PASSED' result::
|
||||||
|
|
||||||
Ran 143 tests in 0.601s
|
Ran 1266 tests in 643.930s
|
||||||
|
|
||||||
PASSED (successes=143)
|
PASSED (skips=15, successes=1251)
|
||||||
|
|
||||||
Running the Integration Tests
|
Running the Integration Tests
|
||||||
=============================
|
=============================
|
||||||
|
1
changelog.d/8666.doc
Normal file
1
changelog.d/8666.doc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Minor updates to docs on running tests.
|
5
tox.ini
5
tox.ini
@ -24,11 +24,6 @@ deps =
|
|||||||
pip>=10
|
pip>=10
|
||||||
|
|
||||||
setenv =
|
setenv =
|
||||||
# we have a pyproject.toml, but don't want pip to use it for building.
|
|
||||||
# (otherwise we get an error about 'editable mode is not supported for
|
|
||||||
# pyproject.toml-style projects').
|
|
||||||
PIP_USE_PEP517 = false
|
|
||||||
|
|
||||||
PYTHONDONTWRITEBYTECODE = no_byte_code
|
PYTHONDONTWRITEBYTECODE = no_byte_code
|
||||||
COVERAGE_PROCESS_START = {toxinidir}/.coveragerc
|
COVERAGE_PROCESS_START = {toxinidir}/.coveragerc
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user