Skip to content

Commit b7ff90c

Browse files
authored
Merge pull request #1561 from automl/development
Release 0.15
2 parents b2ac331 + 013d7ee commit b7ff90c

File tree

487 files changed

+49296
-35062
lines changed

Some content is hidden

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

487 files changed

+49296
-35062
lines changed

.codecov.yml

+26-22
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,46 @@
11
#see https://github.com/codecov/support/wiki/Codecov-Yaml
22
codecov:
3-
notify:
4-
require_ci_to_pass: yes
3+
require_ci_to_pass: yes
54

65
coverage:
7-
precision: 2 # 2 = xx.xx%, 0 = xx%
8-
round: nearest # how coverage is rounded: down/up/nearest
9-
range: 10...90 # custom range of coverage colors from red -> yellow -> green
6+
7+
# 2 = xx.xx%, 0 = xx%
8+
precision: 2
9+
10+
# https://docs.codecov.com/docs/commit-status
1011
status:
11-
# https://codecov.readme.io/v1.0/docs/commit-status
12+
13+
# We want our total main project to always remain above 84% coverage, a
14+
# drop of 0.20% is allowed. It should fail if coverage couldn't be uploaded
15+
# of the CI fails otherwise
1216
project:
1317
default:
14-
against: auto
15-
target: 70% # specify the target coverage for each commit status
16-
threshold: 50% # allow this little decrease on project
17-
# https://github.com/codecov/support/wiki/Filtering-Branches
18-
# branches: master
18+
target: 84%
19+
threshold: 0.20%
20+
if_not_found: failure
1921
if_ci_failed: error
20-
# https://github.com/codecov/support/wiki/Patch-Status
22+
23+
# The code changed by a PR should have 90% coverage. This is different from the
24+
# overall number shown above.
25+
# This encourages small PR's as they are easier to test.
2126
patch:
2227
default:
23-
against: auto
24-
target: 30% # specify the target "X%" coverage to hit
25-
threshold: 50% # allow this much decrease on patch
26-
changes: false
28+
target: 90%
29+
if_not_found: failure
30+
if_ci_failed: error
2731

32+
# We upload additional information on branching with pytest-cov `--cov-branch`
33+
# This information can be used by codecov.com to increase analysis of code
2834
parsers:
2935
gcov:
3036
branch_detection:
3137
conditional: true
3238
loop: true
39+
method: true
3340
macro: false
34-
method: false
35-
javascript:
36-
enable_partials: false
41+
3742

3843
comment:
39-
layout: header, diff
44+
layout: diff, reach
45+
behavior: default
4046
require_changes: false
41-
behavior: default # update if exists else create new
42-
branches: *

.flake8

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
[flake8]
2-
max-line-length = 100
32
show-source = True
4-
application-import-names = autosklearn
5-
exclude =
3+
max-line-length = 88
4+
extend-exclude =
65
venv
6+
.venv
77
build
8+
autosklearn/automl_common
9+
extend-ignore =
10+
# No whitespace before ':' in [x : y]
11+
E203
12+
# No lambdas — too strict
13+
E731

.github/dependabot.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
version: 2
2+
3+
updates:
4+
# This will check for updates to github actions every day
5+
# https://docs.github.com/en/[email protected]/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "daily"

0 commit comments

Comments
 (0)