File: .gitignore

package info (click to toggle)
python-scooby 0.10.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 352 kB
  • sloc: python: 864; makefile: 33
file content (37 lines) | stat: -rw-r--r-- 412 bytes parent folder | download | duplicates (3)
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
33
34
35
36
37
# Compiled source #
###################
*.pyc
*.pyd
*.so
*.o

# Pip generated folders #
#########################
*.egg-info/
build/
dist/
scooby/version.py

# Mac
.DS_Store

# testing coverage and cache
.pytest_cache/
tests/.coverage
tests/htmlcov/
tests/dummy_module/

# windows
test.bat

# Jupyter notebook cache
**/.ipynb_checkpoints

# Code coverage results
htmlcov
.coverage
coverage.xml
*,cover

.tox
venv