Skip to content

Commit 54ba4e9

Browse files
committed
chore: Update .gitignore to include additional Python, environment, and build artifacts
1 parent aeecb53 commit 54ba4e9

1 file changed

Lines changed: 91 additions & 6 deletions

File tree

.gitignore

Lines changed: 91 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,108 @@
1+
# Python
12
__pycache__/
23
*.py[cod]
34
*.pyo
4-
.pytest_cache/
5-
*.egg-info/
5+
*.pyd
6+
*$py.class
7+
*.so
8+
.Python
9+
10+
# Virtual Environments
11+
.env
12+
.venv/
13+
venv/
14+
ENV/
15+
env/
16+
env.bak/
17+
venv.bak/
18+
19+
# Distribution / packaging
620
dist/
721
build/
8-
.env
22+
*.egg-info/
23+
*.egg
24+
.eggs/
25+
lib/
26+
lib64/
27+
parts/
28+
sdist/
29+
var/
30+
wheels/
31+
pip-wheel-metadata/
32+
share/python-wheels/
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
950
*.log
51+
.pytest_cache/
52+
.hypothesis/
53+
pytestdebug.log
54+
55+
# Jupyter Notebook
56+
.ipynb_checkpoints
57+
*.ipynb_checkpoints/
58+
59+
# PyCharm
60+
.idea/
61+
*.iml
62+
*.iws
63+
.idea_modules/
64+
65+
# VS Code
66+
.vscode/
67+
*.code-workspace
68+
69+
# Spyder
70+
.spyderproject
71+
.spyproject
72+
73+
# Rope
74+
.ropeproject
75+
76+
# mkdocs
77+
site/
78+
docs/_build/
79+
80+
# mypy
81+
.mypy_cache/
82+
.dmypy.json
83+
dmypy.json
84+
85+
# Pyre type checker
86+
.pyre/
87+
88+
# pytype static type analyzer
89+
.pytype/
90+
91+
# Cython debug symbols
92+
cython_debug/
93+
94+
# Jekyll
1095
_site/
1196
.jekyll-cache/
12-
.venv/
13-
venv/
14-
docs/test-report.html
1597

1698
# Hugo build artifacts
1799
hugo-docs/public/
18100
hugo-docs/resources/
19101
hugo-docs/.hugo_build.lock
20102

103+
# Test reports
104+
docs/test-report.html
105+
21106
# Scaffold-generated output files (created by `python -m cli.devopsos scaffold *`)
22107
.gitlab-ci.yml
23108
Jenkinsfile

0 commit comments

Comments
 (0)