File tree 7 files changed +251
-125
lines changed
7 files changed +251
-125
lines changed Original file line number Diff line number Diff line change 1
- fixes :
2
- - " .*/site-packages/::src/"
1
+ # codecov can find this file anywhere in the repo, so we don't need to clutter
2
+ # the root folder.
3
+ # comment: false
4
+
5
+ codecov :
6
+ notify :
7
+ require_ci_to_pass : no
8
+
9
+ coverage :
10
+ status :
11
+ patch :
12
+ default :
13
+ target : ' 70'
14
+ if_no_uploads : error
15
+ if_not_found : success
16
+ if_ci_failed : failure
17
+ project :
18
+ default : false
19
+ library :
20
+ target : auto
21
+ if_no_uploads : error
22
+ if_not_found : success
23
+ if_ci_failed : error
24
+ paths : ' !*/tests/.*'
25
+
26
+ tests :
27
+ target : 97.9%
28
+ paths : ' */tests/.*'
29
+ if_not_found : success
30
+
31
+ flags :
32
+ tests :
33
+ paths :
34
+ - tests/
Original file line number Diff line number Diff line change 1
- # Configuration of the coverage.py tool for reporting test coverage.
2
-
3
- [report]
4
- # RE patterns for lines to be excluded from consideration.
5
- exclude_lines =
6
- # Have to re-enable the standard pragma
7
- pragma: no cover
8
- # Don't complain if tests don't hit defensive assertion code:
9
- raise AssertionError
10
- raise NotImplementedError
11
- ^[ ]*assert False
12
-
13
- # Don't complain if non-runnable code isn't run:
14
- ^[ ]*@unittest.skip\b
15
- ^[ ]{4}unittest.main()
16
- if __name__ == .__main__.:
17
-
18
-
19
1
[run]
2
+ source =
3
+ diffpy.pdfgui
4
+ [report]
20
5
omit =
21
- # exclude debug.py from codecov report
22
- */tests/debug.py
6
+ */python?.?/*
7
+ */site-packages/nose/*
8
+ # ignore _version.py and versioneer.py
9
+ .*version.*
10
+ *_version.py
11
+
12
+ exclude_lines =
13
+ if __name__ == ' __main__' :
Original file line number Diff line number Diff line change 1
- /.gitattributes export-ignore
2
- /.gitignore export-ignore
3
- /.travis.yml export-ignore
4
- /conda-recipe / export-ignore
5
- /devutils export-ignore
6
- .gitarchive.cfg export-subst
7
- * .bat text eol =crlf
1
+ diffpy.pdfgui /_version.py export-subst
Original file line number Diff line number Diff line change
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__ /
1
3
* .py [cod ]
4
+ * $py.class
2
5
3
6
# C extensions
4
7
* .so
5
8
6
- # Packages
7
- * .egg
8
- * .egg-info
9
- dist
10
- build
11
- eggs
12
- parts
13
- bin
14
- var
15
- sdist
16
- temp
17
- develop-eggs
9
+ # Distribution / packaging
10
+ .Python
11
+ env /
12
+ build /
13
+ develop-eggs /
14
+ dist /
15
+ downloads /
16
+ eggs /
17
+ .eggs /
18
+ lib /
19
+ lib64 /
20
+ parts /
21
+ sdist /
22
+ var /
23
+ venv /
24
+ * .egg-info /
18
25
.installed.cfg
19
- lib
20
- lib64
21
- tags
26
+ * .egg
27
+ bin /
28
+ temp /
29
+ tags /
22
30
errors.err
23
- .idea
31
+
32
+ # PyInstaller
33
+ # Usually these files are written by a python script from a template
34
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
35
+ * .manifest
36
+ * .spec
24
37
25
38
# Installer logs
26
39
pip-log.txt
40
+ pip-delete-this-directory.txt
27
41
MANIFEST
28
42
29
43
# Unit test / coverage reports
44
+ htmlcov /
45
+ .tox /
30
46
.coverage
31
- .tox
47
+ .coverage. *
48
+ .cache
32
49
nosetests.xml
50
+ coverage.xml
51
+ * ,cover
52
+ .hypothesis /
33
53
34
54
# Translations
35
55
* .mo
56
+ * .pot
36
57
37
58
# Mr Developer
38
59
.mr.developer.cfg
39
60
.project
40
61
.pydevproject
41
62
63
+ # Django stuff:
64
+ * .log
65
+
66
+ # Sphinx documentation
67
+ docs /build /
68
+ docs /source /generated /
69
+
70
+ # pytest
71
+ .pytest_cache /
72
+
73
+ # PyBuilder
74
+ target /
75
+
76
+ # Editor files
77
+ # mac
78
+ .DS_Store
79
+ * ~
80
+
81
+ # vim
82
+ * .swp
83
+ * .swo
84
+
85
+ # pycharm
86
+ .idea /
87
+
88
+ # VSCode
89
+ .vscode /
90
+
91
+ # Ipython Notebook
92
+ .ipynb_checkpoints
93
+
42
94
# version information
43
95
setup.cfg
44
96
/src /diffpy /* /version.cfg
97
+
98
+ # Rever
99
+ rever /
Original file line number Diff line number Diff line change 1
- =========================
2
- Diffpy.pdfgui Change Log
3
- =========================
1
+ =============
2
+ Release Notes
3
+ =============
4
4
5
5
.. current developments
6
6
You can’t perform that action at this time.
0 commit comments