File tree Expand file tree Collapse file tree 4 files changed +9
-21
lines changed Expand file tree Collapse file tree 4 files changed +9
-21
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ UNRELEASED
6
6
- Removed support for end of life Python 3.5.
7
7
- Added support for Django 3.1.
8
8
- Added support for Python 3.9.
9
+ - Removed ``dev-requirements.txt`` in favor of :doc:`tox <tox:index>`.
9
10
10
11
2.2.0 - 2020-06-02
11
12
------------------
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 174
174
"https://docs.djangoproject.com/en/stable/_objects/" ,
175
175
),
176
176
"pythonldap" : ("https://python-ldap.readthedocs.io/en/latest/" , None ),
177
+ "tox" : ("https://tox.readthedocs.io/en/latest/" , None ),
177
178
}
Original file line number Diff line number Diff line change @@ -18,21 +18,8 @@ anchor point.
18
18
Development
19
19
-----------
20
20
21
- To get set up for development, activate your virtualenv and use pip to install
22
- from ``dev-requirements.txt ``:
23
-
24
- .. code-block :: sh
25
-
26
- $ pip install -r dev-requirements.txt
27
-
28
- To run the tests:
29
-
30
- .. code-block :: sh
31
-
32
- $ django-admin test --settings tests.settings
33
-
34
- To run the full test suite in a range of environments, run `tox `_ from the root
35
- of the project:
21
+ To run the full test suite in a range of environments, run :doc: `tox <tox:index >`
22
+ from the root of the project:
36
23
37
24
.. code-block :: sh
38
25
@@ -41,4 +28,8 @@ of the project:
41
28
This includes some static analysis to detect potential runtime errors and style
42
29
issues.
43
30
44
- .. _`tox` : https://tox.readthedocs.io/
31
+ To limit to a single environment, use :option: `tox.-e `:
32
+
33
+ .. code-block :: console
34
+
35
+ $ tox -e djangomaster
You can’t perform that action at this time.
0 commit comments