Skip to content

Commit 1261584

Browse files
authored
Merge pull request #1924 from chrisburrc/adding-test-coverage-to-utils.py
Adding test coverage to utils.py
2 parents 19cea55 + 21a3474 commit 1261584

3 files changed

Lines changed: 2475 additions & 52 deletions

File tree

.gitignore

Lines changed: 61 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,68 @@ artisan_plus.log
2424
outbox/
2525
*flycheck_*.py
2626

27+
# Virtual environments
28+
venv/
29+
.venv/
30+
env/
31+
.env/
32+
33+
# uv
34+
.uv/
35+
uv.lock
36+
37+
# Python development
38+
__pycache__/
39+
*.py[cod]
40+
*$py.class
41+
*.so
42+
.Python
43+
pip-log.txt
44+
pip-delete-this-directory.txt
45+
46+
# Testing and coverage
47+
.pytest_cache/
48+
.coverage
49+
.coverage.*
50+
htmlcov/
51+
.tox/
52+
.nox/
53+
coverage.xml
54+
*.cover
55+
*.py,cover
56+
.hypothesis/
57+
58+
# Type checking
59+
.mypy_cache/
60+
.dmypy.json
61+
dmypy.json
62+
.pytype/
63+
64+
# Linting
65+
.ruff_cache/
66+
67+
# Augment AI assistant files
68+
.augment/
69+
70+
# IDEs and editors
71+
.vscode/
72+
.vscode/settings.json.bak
73+
.vscode/.ropeproject
74+
*.swp
75+
*.swo
76+
*~
77+
78+
# OS generated files
79+
.DS_Store
80+
.DS_Store?
81+
._*
82+
.Spotlight-V100
83+
.Trashes
84+
ehthumbs.db
85+
Thumbs.db
86+
2787
#Keeps derived files out of the Artisan repository
28-
# To remove these files from the repository a commit must first be made
88+
# To remove these files from the repository a commit must first be made
2989
# with the these files deleted, then this section should be uncommented.
3090
#to remove initially make a commit with thee files deleted then uncomment this section
3191
#src/uic/[!_]*.py

0 commit comments

Comments
 (0)