Skip to content

Commit fe5fd93

Browse files
committed
#256create files tests-cov.txt
Completed.
1 parent 8aab590 commit fe5fd93

File tree

7 files changed

+587
-0
lines changed

7 files changed

+587
-0
lines changed

Python3.10/tests-cov.txt

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
(py.3.10.18) PS E:\GitHub\PyRandLib\Python3.10> pytest --cov-config=.coveragerc --cov=. unit_tests
2+
========================================= test session starts ==========================================
3+
platform win32 -- Python 3.10.18, pytest-8.4.0, pluggy-1.6.0
4+
rootdir: E:\GitHub\PyRandLib\Python3.10
5+
plugins: cov-6.1.1
6+
collected 360 items
7+
8+
unit_tests\test_basecwg.py ........ [ 2%]
9+
unit_tests\test_baselcg.py .......... [ 5%]
10+
unit_tests\test_baselfib64.py .......... [ 7%]
11+
unit_tests\test_basemelg.py .......... [ 10%]
12+
unit_tests\test_basemrg.py ........ [ 12%]
13+
unit_tests\test_basepcg.py .......... [ 15%]
14+
unit_tests\test_baserandom.py ..................... [ 21%]
15+
unit_tests\test_basesquares.py ........... [ 24%]
16+
unit_tests\test_basewell.py ...................... [ 30%]
17+
unit_tests\test_basexoroshiro.py .......... [ 33%]
18+
unit_tests\test_cwg128.py ........ [ 35%]
19+
unit_tests\test_cwg128_64.py ........ [ 37%]
20+
unit_tests\test_cwg64.py ........ [ 40%]
21+
unit_tests\test_fastrand32.py ........ [ 42%]
22+
unit_tests\test_fastrand63.py ........ [ 44%]
23+
unit_tests\test_lfib116.py ........ [ 46%]
24+
unit_tests\test_lfib1340.py ........ [ 48%]
25+
unit_tests\test_lfib668.py ........ [ 51%]
26+
unit_tests\test_lfib78.py .......... [ 53%]
27+
unit_tests\test_listindexstate.py ..... [ 55%]
28+
unit_tests\test_melg19937.py ........ [ 57%]
29+
unit_tests\test_melg44497.py ........ [ 59%]
30+
unit_tests\test_melg607.py ........ [ 61%]
31+
unit_tests\test_mrg1457.py ........ [ 64%]
32+
unit_tests\test_mrg287.py ........ [ 66%]
33+
unit_tests\test_mrg49507.py ........ [ 68%]
34+
unit_tests\test_pcg1024_32.py ........... [ 71%]
35+
unit_tests\test_pcg128_64.py ........ [ 73%]
36+
unit_tests\test_pcg64_32.py ........ [ 76%]
37+
unit_tests\test_splitmix.py .................... [ 81%]
38+
unit_tests\test_squares32.py ..... [ 83%]
39+
unit_tests\test_squares64.py ..... [ 84%]
40+
unit_tests\test_well1024a.py ........ [ 86%]
41+
unit_tests\test_well19937c.py ........ [ 88%]
42+
unit_tests\test_well44497b.py ........ [ 91%]
43+
unit_tests\test_well512a.py ........ [ 93%]
44+
unit_tests\test_xoroshiro1024.py ........ [ 95%]
45+
unit_tests\test_xoroshiro256.py ........ [ 97%]
46+
unit_tests\test_xoroshiro512.py ........ [100%]
47+
48+
============================================ tests coverage ============================================
49+
___________________________ coverage: platform win32, python 3.10.18-final-0 ___________________________
50+
51+
Name Stmts Miss Cover
52+
---------------------------------------------------
53+
PyRandLib\__init__.py 36 0 100%
54+
PyRandLib\annotation_types.py 5 0 100%
55+
PyRandLib\basecwg.py 7 0 100%
56+
PyRandLib\baselcg.py 7 0 100%
57+
PyRandLib\baselfib64.py 15 0 100%
58+
PyRandLib\basemelg.py 15 0 100%
59+
PyRandLib\basemrg.py 5 0 100%
60+
PyRandLib\basepcg.py 7 0 100%
61+
PyRandLib\baserandom.py 55 0 100%
62+
PyRandLib\basesquares.py 57 0 100%
63+
PyRandLib\basewell.py 56 0 100%
64+
PyRandLib\basexoroshiro.py 16 0 100%
65+
PyRandLib\cwg64.py 38 0 100%
66+
PyRandLib\cwg128.py 51 0 100%
67+
PyRandLib\cwg128_64.py 50 0 100%
68+
PyRandLib\fastrand32.py 21 0 100%
69+
PyRandLib\fastrand63.py 26 0 100%
70+
PyRandLib\lfib78.py 11 0 100%
71+
PyRandLib\lfib116.py 11 0 100%
72+
PyRandLib\lfib668.py 11 0 100%
73+
PyRandLib\lfib1340.py 11 0 100%
74+
PyRandLib\listindexstate.py 44 0 100%
75+
PyRandLib\melg607.py 14 0 100%
76+
PyRandLib\melg19937.py 14 0 100%
77+
PyRandLib\melg44497.py 14 0 100%
78+
PyRandLib\mrg287.py 16 0 100%
79+
PyRandLib\mrg1457.py 19 0 100%
80+
PyRandLib\mrg49507.py 19 0 100%
81+
PyRandLib\pcg64_32.py 25 0 100%
82+
PyRandLib\pcg128_64.py 40 0 100%
83+
PyRandLib\pcg1024_32.py 67 0 100%
84+
PyRandLib\splitmix.py 34 0 100%
85+
PyRandLib\squares32.py 16 0 100%
86+
PyRandLib\squares64.py 22 0 100%
87+
PyRandLib\well512a.py 14 0 100%
88+
PyRandLib\well1024a.py 13 0 100%
89+
PyRandLib\well19937c.py 20 0 100%
90+
PyRandLib\well44497b.py 20 0 100%
91+
PyRandLib\xoroshiro256.py 15 0 100%
92+
PyRandLib\xoroshiro512.py 19 0 100%
93+
PyRandLib\xoroshiro1024.py 13 0 100%
94+
---------------------------------------------------
95+
TOTAL 969 0 100%
96+
Required test coverage of 100.0% reached. Total coverage: 100.00%
97+
========================================= 360 passed in 2.15s ==========================================

Python3.11/tests-cov.txt

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
(py.3.11.13) PS E:\GitHub\PyRandLib\Python3.11> pytest --cov-config=.coveragerc --cov=. unit_tests
2+
========================================== test session starts ==========================================
3+
platform win32 -- Python 3.11.13, pytest-8.4.0, pluggy-1.6.0
4+
rootdir: E:\GitHub\PyRandLib\Python3.11
5+
plugins: cov-6.1.1
6+
collected 358 items
7+
8+
unit_tests\test_basecwg.py ........ [ 2%]
9+
unit_tests\test_baselcg.py .......... [ 5%]
10+
unit_tests\test_baselfib64.py .......... [ 7%]
11+
unit_tests\test_basemelg.py .......... [ 10%]
12+
unit_tests\test_basemrg.py ....... [ 12%]
13+
unit_tests\test_basepcg.py .......... [ 15%]
14+
unit_tests\test_baserandom.py ..................... [ 21%]
15+
unit_tests\test_basesquares.py ........... [ 24%]
16+
unit_tests\test_basewell.py ...................... [ 30%]
17+
unit_tests\test_basexoroshiro.py .......... [ 33%]
18+
unit_tests\test_cwg128.py ........ [ 35%]
19+
unit_tests\test_cwg128_64.py ........ [ 37%]
20+
unit_tests\test_cwg64.py ........ [ 39%]
21+
unit_tests\test_fastrand32.py ........ [ 42%]
22+
unit_tests\test_fastrand63.py ........ [ 44%]
23+
unit_tests\test_lfib116.py ........ [ 46%]
24+
unit_tests\test_lfib1340.py ........ [ 48%]
25+
unit_tests\test_lfib668.py ........ [ 51%]
26+
unit_tests\test_lfib78.py ........ [ 53%]
27+
unit_tests\test_listindexstate.py ...... [ 55%]
28+
unit_tests\test_melg19937.py ........ [ 57%]
29+
unit_tests\test_melg44497.py ........ [ 59%]
30+
unit_tests\test_melg607.py ........ [ 61%]
31+
unit_tests\test_mrg1457.py ........ [ 63%]
32+
unit_tests\test_mrg287.py ........ [ 66%]
33+
unit_tests\test_mrg49507.py ........ [ 68%]
34+
unit_tests\test_pcg1024_32.py ........... [ 71%]
35+
unit_tests\test_pcg128_64.py ........ [ 73%]
36+
unit_tests\test_pcg64_32.py ........ [ 75%]
37+
unit_tests\test_splitmix.py .................... [ 81%]
38+
unit_tests\test_squares32.py ..... [ 82%]
39+
unit_tests\test_squares64.py ..... [ 84%]
40+
unit_tests\test_well1024a.py ........ [ 86%]
41+
unit_tests\test_well19937c.py ........ [ 88%]
42+
unit_tests\test_well44497b.py ........ [ 91%]
43+
unit_tests\test_well512a.py ........ [ 93%]
44+
unit_tests\test_xoroshiro1024.py ........ [ 95%]
45+
unit_tests\test_xoroshiro256.py ........ [ 97%]
46+
unit_tests\test_xoroshiro512.py ........ [100%]
47+
48+
============================================ tests coverage =============================================
49+
___________________________ coverage: platform win32, python 3.11.13-final-0 ____________________________
50+
51+
Name Stmts Miss Cover
52+
---------------------------------------------------
53+
PyRandLib\__init__.py 36 0 100%
54+
PyRandLib\annotation_types.py 5 0 100%
55+
PyRandLib\basecwg.py 7 0 100%
56+
PyRandLib\baselcg.py 7 0 100%
57+
PyRandLib\baselfib64.py 15 0 100%
58+
PyRandLib\basemelg.py 15 0 100%
59+
PyRandLib\basemrg.py 5 0 100%
60+
PyRandLib\basepcg.py 7 0 100%
61+
PyRandLib\baserandom.py 55 0 100%
62+
PyRandLib\basesquares.py 57 0 100%
63+
PyRandLib\basewell.py 56 0 100%
64+
PyRandLib\basexoroshiro.py 16 0 100%
65+
PyRandLib\cwg64.py 38 0 100%
66+
PyRandLib\cwg128.py 51 0 100%
67+
PyRandLib\cwg128_64.py 50 0 100%
68+
PyRandLib\fastrand32.py 21 0 100%
69+
PyRandLib\fastrand63.py 26 0 100%
70+
PyRandLib\lfib78.py 11 0 100%
71+
PyRandLib\lfib116.py 11 0 100%
72+
PyRandLib\lfib668.py 11 0 100%
73+
PyRandLib\lfib1340.py 11 0 100%
74+
PyRandLib\listindexstate.py 44 0 100%
75+
PyRandLib\melg607.py 14 0 100%
76+
PyRandLib\melg19937.py 14 0 100%
77+
PyRandLib\melg44497.py 14 0 100%
78+
PyRandLib\mrg287.py 16 0 100%
79+
PyRandLib\mrg1457.py 19 0 100%
80+
PyRandLib\mrg49507.py 19 0 100%
81+
PyRandLib\pcg64_32.py 25 0 100%
82+
PyRandLib\pcg128_64.py 40 0 100%
83+
PyRandLib\pcg1024_32.py 67 0 100%
84+
PyRandLib\splitmix.py 34 0 100%
85+
PyRandLib\squares32.py 16 0 100%
86+
PyRandLib\squares64.py 22 0 100%
87+
PyRandLib\well512a.py 14 0 100%
88+
PyRandLib\well1024a.py 13 0 100%
89+
PyRandLib\well19937c.py 20 0 100%
90+
PyRandLib\well44497b.py 20 0 100%
91+
PyRandLib\xoroshiro256.py 15 0 100%
92+
PyRandLib\xoroshiro512.py 19 0 100%
93+
PyRandLib\xoroshiro1024.py 13 0 100%
94+
---------------------------------------------------
95+
TOTAL 969 0 100%
96+
Required test coverage of 100.0% reached. Total coverage: 100.00%
97+
========================================== 358 passed in 2.22s ==========================================

0 commit comments

Comments
 (0)