1
1
Metadata-Version: 2.1
2
2
Name: testrun
3
- Version: 0 .0.5
3
+ Version: 1 .0.0
4
4
Summary: A package for tests with meaningful output and display (IDLE-Compatible)
5
5
Home-page: https://github.com/ES-Alexander/testrun
6
6
Author: ES-Alexander
7
7
License: UNKNOWN
8
8
Description: # testrun
9
9
A Python library for tests with meaningful output and display (IDLE-compatible)
10
10
_________________________________
11
- Version: 0 .0.5
11
+ Version: 1 .0.0
12
12
Author: ES Alexander
13
13
Release Date: 07/Nov/2019
14
14
_________________________________
@@ -19,9 +19,9 @@ Description: # testrun
19
19
20
20
`TestRun`:
21
21
A base class for a test-suite, including automatic test-detection
22
- (for methods beginning with ' test_' ), running all available tests or a
23
- specified set with ' run_tests' , running the tests which failed in the last
24
- run with ' run_failed_tests' , and automatic (not in IDLE) and user-generated
22
+ (for methods beginning with ` test_` ), running all available tests or a
23
+ specified set with ` run_tests` , running the tests which failed in the last
24
+ run with ` run_failed_tests` , and automatic (not in IDLE) and user-generated
25
25
timeouts while testing.
26
26
27
27
`TestGroup`:
@@ -37,6 +37,15 @@ Description: # testrun
37
37
A class for managing multiple redirections, allowing for methods to be run
38
38
simultaneously on all stored redirections.
39
39
40
+ ## Usage
41
+ Install via pip, using `python3 -m pip install --upgrade testrun`.
42
+
43
+
44
+ To import the entire module, use `import testrun.TestRun as TestRun`.
45
+
46
+ Otherwise, to import one or more classes, use `from testrun.TestRun import
47
+ TestRun, Redirect`.
48
+
40
49
Platform: UNKNOWN
41
50
Classifier: Programming Language :: Python :: 3
42
51
Classifier: License :: OSI Approved :: MIT License
0 commit comments