Skip to content

Commit 6990652

Browse files
committedSep 17, 2022
First commit
0 parents  commit 6990652

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2318
-0
lines changed
 

‎.bumpversion.cfg

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[bumpversion]
2+
current_version = 0.0.1
3+
commit = True
4+
tag = True
5+
tag_name = {new_version}
6+
7+
[bumpversion:file:src/sync_or_swim/__init__.py]
8+
search = __version__ = "{current_version}"
9+
replace = __version__ = "{new_version}"
10+
11+
[bumpversion:file:setup.py]
12+
search = : "{current_version}"
13+
replace = : "{new_version}"

‎.codecov.yaml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
codecov:
2+
branch: master
3+
notify:
4+
require_ci_to_pass: true
5+
6+
ignore:
7+
- "tests/*"
8+
9+
coverage:
10+
precision: 2
11+
round: nearest
12+
range: "70...100"
13+
14+
status:
15+
project: true
16+
patch: false
17+
changes: true
18+
19+
parsers:
20+
gcov:
21+
branch_detection:
22+
conditional: true
23+
loop: true
24+
method: false
25+
macro: false
26+
27+
comment:
28+
layout: "header, diff"
29+
behavior: default
30+
require_changes: false

0 commit comments

Comments
 (0)