diff --git a/docs/development.rst b/docs/development.rst index 95c7218f7..54b973b74 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -308,6 +308,37 @@ Important notes: - When using ``--`` to give options to py.test, you MUST also give ``borg.testsuite[.module]``. +Running the tests (using the pypi package) +------------------------------------------ + +Since borg 1.4, it is also possible to run the tests without a development +environment, using the borgbackup dist package (downloaded from pypi.org or +github releases page):: + + # optional: create and use a virtual env: + python3 -m venv env + . env/bin/activate + + # install packages + pip install borgbackup + pip install pytest pytest-benchmark + + # method A: use a pytest.ini + + cat >pytest.ini <<