File tree 2 files changed +42
-3
lines changed
2 files changed +42
-3
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,30 @@ Documentation
38
38
39
39
http://readthedocs.org/docs/booleanpy/en/latest/
40
40
41
+ Installation
42
+ ------------
41
43
44
+ ` pip install boolean.py `
42
45
43
- Download and installation
44
- -------------------------
46
+ Testing
47
+ -------
48
+
49
+ Test ` boolean.py ` with your current Python environment:
50
+
51
+ ` python setup.py test `
45
52
46
- `pip install boolean.py`
53
+ Test with all of the supported Python environments using ` tox ` :
47
54
55
+ ```
56
+ pip install -r test-requirements.txt
57
+ tox
58
+ ```
59
+
60
+ If ` tox ` throws ` InterpreterNotFound ` , limit it to python interpreters that are actually installed on your machine:
61
+
62
+ ```
63
+ tox -e py27,py36
64
+ ```
48
65
49
66
License
50
67
-------
Original file line number Diff line number Diff line change @@ -10,6 +10,28 @@ and laws are stated in :doc:`concepts`.
10
10
:depth: 2
11
11
:backlinks: top
12
12
13
+ Testing
14
+ -------
15
+
16
+ Test `boolean.py ` with your current Python environment:
17
+
18
+ .. code-block :: shell
19
+
20
+ python setup.py test
21
+
22
+ Test with all of the supported Python environments using `tox `:
23
+
24
+ .. code-block :: shell
25
+
26
+ pip install -r test-requirements.txt
27
+ tox
28
+
29
+ If `tox ` throws `InterpreterNotFound `, limit it to python interpreters that are actually installed on your machine:
30
+
31
+ .. code-block :: shell
32
+
33
+ tox -e py27,py36
34
+
13
35
Classes Hierarchy
14
36
-----------------
15
37
..
You can’t perform that action at this time.
0 commit comments