From 2a34a93da724b42db2b84675073b022c154c6dc1 Mon Sep 17 00:00:00 2001 From: Juan Ignacio Fiorentino Date: Thu, 22 Mar 2018 16:52:08 -0300 Subject: [PATCH] Fix contribute docs. --- docs/sections/contribute.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/sections/contribute.rst b/docs/sections/contribute.rst index f87b59d..068783a 100644 --- a/docs/sections/contribute.rst +++ b/docs/sections/contribute.rst @@ -13,16 +13,16 @@ We love contributions, so please feel free to fix bugs, improve things, provide Running Tests ============= -Use `tox `_ for running tests in each of the environments, also to run coverage among:: +Use `tox `_ for running tests in each of the environments, also to run coverage and flake8 among:: # Run all tests. $ tox - # Run with Python 2.7 and Django 1.9. - $ tox -e py27-django19 + # Run with Python 3.5 and Django 2.0. + $ tox -e py35-django20 - # Run single test file. - $ python runtests.py oidc_provider.tests.test_authorize_endpoint + # Run single test file on specific environment. + $ tox -e py35-django20 tests/cases/test_authorize_endpoint.py We also use `travis `_ to automatically test every commit to the project,