Skip to content

Commit edaffc0

Browse files
author
Eric Camplin
committed
update repo .gitignore for python artifacts
1 parent 362dd9e commit edaffc0

1 file changed

Lines changed: 48 additions & 1 deletion

File tree

.gitignore

Lines changed: 48 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,54 @@ ClientBin
114114
Generated_Code #added for RIA/Silverlight projects
115115

116116
# Backup & report files from converting an old project file to a newer
117-
# Visual Studio version. Backup files are not needed, because we have git ;-)
118117
_UpgradeReport_Files/
119118
Backup*/
120119
UpgradeLog*.XML
120+
121+
# Python artifacts
122+
__pycache__/
123+
*.py[cod]
124+
*.pyo
125+
*.pyd
126+
127+
# Python virtual environments
128+
.env/
129+
.venv/
130+
env/
131+
venv/
132+
ENV/
133+
ENV*/
134+
135+
# Python packaging
136+
build/
137+
dist/
138+
*.egg-info/
139+
.eggs/
140+
141+
# Test output (pytest, unittest, coverage, etc.)
142+
htmlcov/
143+
.tox/
144+
.nox/
145+
.coverage
146+
.coverage.*
147+
.cache
148+
nosetests.xml
149+
coverage.xml
150+
*.cover
151+
*.py,cover
152+
.pytest_cache/
153+
test-results/
154+
junit-*.xml
155+
156+
# IPython/Jupyter
157+
.ipynb_checkpoints/
158+
159+
# mypy
160+
.mypy_cache/
161+
.dmypy.json
162+
163+
# Pyre type checker
164+
.pyre/
165+
166+
# Pyright type checker
167+
.pyrightcache/

0 commit comments

Comments
 (0)