File: .gitignore

package info (click to toggle)
python-assertpy 1.1-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 628 kB
  • sloc: python: 5,712; makefile: 4; sh: 3
file content (29 lines) | stat: -rw-r--r-- 236 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# .gitignore
*.py[cod]
.cache
.pytest_cache
__pycache__

# testing output
*.xml
*.log
cover
.coverage
htmlcov
__snapshots
mycustompath

# packaging
MANIFEST
dist

# mac
.DS_Store

# IDE
/.idea
.vscode

# docs output
docs/build
docs/out