File: .gitignore

package info (click to toggle)
python-qemu-qmp 0.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 564 kB
  • sloc: python: 2,819; makefile: 157; sh: 2
file content (32 lines) | stat: -rw-r--r-- 348 bytes parent folder | download | duplicates (2)
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
30
31
32
# Python detritus
__pycache__

# linter/tooling cache
.mypy_cache/
.cache/

# python packaging
build/
dist/
qemu.qmp.egg-info/
.eggs/

# editor config, tool cache, etc.
.idea/
.vscode/
.*~
\#*\#

# virtual environments
.dev-venv/
.min-venv/
.tox/

# Coverage.py reports
.coverage
.coverage.*
htmlcov/
coverage.xml

# Unit test results
test-results/