summaryrefslogtreecommitdiff
path: root/.gitignore
blob: 6ae909b85d473ca36fc4839ad225cfa1063c981e (plain)
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
38
.vscode/
.idea/
.DS_Store

*.pyc
__pycache__/

# ignore doc products
doc/*.md5
doc/*.ly
doc/*.svg
doc/*.png
doc/*.1
doc/*.html
doc/*.xml
!doc/article-docinfo.xml

# ignore the configure/make products
/autom4te.cache/
/config.*
/configure
Makefile
MANIFEST

/tags
/gh-pages/
build/
dist/
*.egg-info/

# test data
!tests/__test_data__/plugin/backends/__pycache__

# test artifacts
.coverage
coverage.xml
htmlcov/
.pytest_cache/