From 197d64d9a8e67d9c5684aa0921f0732fd40510eb Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 19 Mar 2020 02:53:24 +0100 Subject: [PATCH] Remove tox from docs --- README.rst | 19 ++++++------------- docs/docs/testing.rst | 12 ++++-------- 2 files changed, 10 insertions(+), 21 deletions(-) diff --git a/README.rst b/README.rst index 6b2839ed..ed05b6e1 100644 --- a/README.rst +++ b/README.rst @@ -54,7 +54,6 @@ Jedi can currently be used with the following editors/projects: and many more! - Here are some pictures taken from jedi-vim_: .. image:: https://github.com/davidhalter/jedi/raw/master/docs/_screenshots/screenshot_complete.png @@ -67,9 +66,7 @@ Display of function/class bodies, docstrings. .. image:: https://github.com/davidhalter/jedi/raw/master/docs/_screenshots/screenshot_pydoc.png -Pydoc support (Shift+k). - -There is also support for goto and renaming. +Documentation support (Shift+k). Get the latest version from `github `_ (master branch should always be kind of stable/working). @@ -181,18 +178,14 @@ There's a pretty good and extensive `development documentation Testing ======= -The test suite depends on ``tox`` and ``pytest``:: +The test suite depends on ``pytest``:: - pip install tox pytest + pip install pytest -To run the tests for all supported Python versions:: +If you want to test only a specific Python version (e.g. Python 3.8), it is as +easy as:: - tox - -If you want to test only a specific Python version (e.g. Python 2.7), it's as -easy as :: - - tox -e py27 + python3.8 -m pytest Tests are also run automatically on `Travis CI `_. diff --git a/docs/docs/testing.rst b/docs/docs/testing.rst index 1aa4a1f1..fdb36658 100644 --- a/docs/docs/testing.rst +++ b/docs/docs/testing.rst @@ -3,18 +3,14 @@ Jedi Testing ============ -The test suite depends on ``tox`` and ``pytest``:: +The test suite depends on ``pytest``:: - pip install tox pytest + pip install pytest -To run the tests for all supported Python versions:: - - tox - -If you want to test only a specific Python version (e.g. Python 2.7), it's as +If you want to test only a specific Python version (e.g. Python 3.8), it is as easy as:: - tox -e py27 + python3.8 -m pytest Tests are also run automatically on `Travis CI `_.