File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 29
29
description : What version of our software are you running?
30
30
placeholder : |
31
31
python 3.12.0
32
- pyprojectsort 0.3 .0
32
+ pyprojectsort 0.4 .0
33
33
- type : textarea
34
34
id : how-to-reproduce
35
35
attributes :
Original file line number Diff line number Diff line change 22
22
- name : Run tests
23
23
run : uv run pytest
24
24
25
- - name : Archive code coverage results
26
- uses : actions/upload-artifact@v3
27
- with :
28
- name : code-coverage-report
29
- path : .reports/
30
- retention-days : 5
31
-
32
25
- name : Upload coverage reports to Codecov
33
26
uses : codecov/codecov-action@v5
34
27
with :
Original file line number Diff line number Diff line change @@ -86,6 +86,12 @@ junit.xml
86
86
.reports /
87
87
docs /
88
88
89
+ # Ruff linting - for IDE highlighting - as internals already ignored
90
+ .ruff_cache /
91
+
92
+ # Node modules - for IDE highlighting - as internals already ignored
93
+ node_modules /
94
+
89
95
# Translations
90
96
* .mo
91
97
* .pot
Original file line number Diff line number Diff line change @@ -67,7 +67,8 @@ Source = "https://github.com/kieran-ryan/pyprojectsort"
67
67
Tracker = " https://github.com/kieran-ryan/pyprojectsort/issues"
68
68
69
69
[tool .coverage .html ]
70
- directory = " .reports"
70
+ directory = " .reports/coverage"
71
+ show_contexts = true
71
72
72
73
[tool .coverage .report ]
73
74
exclude_lines = [
@@ -98,7 +99,7 @@ testpaths = [
98
99
]
99
100
100
101
[tool .ruff ]
101
- target-version = " py37 "
102
+ target-version = " py38 "
102
103
103
104
[tool .ruff .lint ]
104
105
ignore = [
You can’t perform that action at this time.
0 commit comments