Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Fix #148: Remove & replace python setup.py test #149

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 2, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ We recommend to use the following workflow if you would like to contribute:
4. Work on your branch. Commit your work. Don't forget to write test cases
for your new feature.

5. Run the test suite. You have the following options:
5. Run the test suite. You can decide to run the complete test suite or
only part of it:

* To run a complete test use the ``setup.py`` script (shown for Python 3)::
* To run all tests, use::

$ python3 setup.py test
$ tox

This may create some errors as you probably do not have all Python
versions installed on your system. To restrict it to only installed
version (probably 2.7 and 3.x), pass this options::
If you have not all Python interpreters installed on your system
it will probably give you some errors. To avoid such errors, use::

$ python3 setup.py test -a --skip-missing-interpreters
$ tox --skip-missing-interpreters

* To run a test for a specific Python version, use the
:command:`tox` command, for example, for Python 3.6::
Expand Down