wexample-filestate-javascript 0.0.8__tar.gz → 0.0.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-filestate-javascript
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Author-Email: weeger <contact@wexample.com>
5
5
  License: MIT
6
6
  Classifier: Programming Language :: Python :: 3
@@ -16,7 +16,7 @@ Description-Content-Type: text/markdown
16
16
 
17
17
  # wexample-filestate-javascript
18
18
 
19
- Version: 0.0.8
19
+ Version: 0.0.9
20
20
 
21
21
 
22
22
 
@@ -35,7 +35,7 @@ First, install the required testing dependencies:
35
35
 
36
36
  Run all tests with coverage:
37
37
  ```bash
38
- .venv/bin/python -m pytest --cov
38
+ .venv/bin/python -m pytest --cov --cov-report=html
39
39
  ```
40
40
 
41
41
  ### Common Commands
@@ -1,6 +1,6 @@
1
1
  # wexample-filestate-javascript
2
2
 
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
 
5
5
 
6
6
 
@@ -19,7 +19,7 @@ First, install the required testing dependencies:
19
19
 
20
20
  Run all tests with coverage:
21
21
  ```bash
22
- .venv/bin/python -m pytest --cov
22
+ .venv/bin/python -m pytest --cov --cov-report=html
23
23
  ```
24
24
 
25
25
  ### Common Commands
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "wexample-filestate-javascript"
9
- version = "0.0.8"
9
+ version = "0.0.9"
10
10
  authors = [
11
11
  { name = "weeger", email = "contact@wexample.com" },
12
12
  ]
@@ -50,3 +50,32 @@ package-dir = "src"
50
50
  packages = [
51
51
  { include = "wexample_filestate-javascript", from = "src" },
52
52
  ]
53
+
54
+ [tool.pytest.ini_options]
55
+ testpaths = [
56
+ "tests",
57
+ ]
58
+ pythonpath = [
59
+ "src",
60
+ ]
61
+
62
+ [tool.coverage.run]
63
+ source = [
64
+ "wexample_filestate-javascript",
65
+ ]
66
+ omit = [
67
+ "*/tests/*",
68
+ "*/.venv/*",
69
+ "*/venv/*",
70
+ ]
71
+
72
+ [tool.coverage.report]
73
+ exclude_lines = [
74
+ "pragma: no cover",
75
+ "def __repr__",
76
+ "raise AssertionError",
77
+ "raise NotImplementedError",
78
+ "if __name__ == .__main__.:",
79
+ "if TYPE_CHECKING:",
80
+ "@abstractmethod",
81
+ ]