Skip to content

Commit be2dfaf

Browse files
committed
Tools update (#1358)
* Draft tidy of workflows * Fix: mypy should not ignore missing imports * Added pydocstyle to checkers * Added check and format make options * Fix: mutiple entries in same line setup.py * Change: black line length to 88 * Fix: make check to only perform checks * Update: Flake8 ignores style (handled by black/isort) * Add: pydocstyle, disabled in pre-commit * Add: Makefile `make pre-commit` * Fix: Ignores for mypy on untyped modules * Limit scope of pre-commit steps * Fix: flake8 no longer concerned about line length * Add: Flake8 to `make check` * Fix: reduce scope of black and isort * Fix: Pydocstyle now uses numpy convention * Fix: workaround for test imports of `automl_common` * Fix: `mypy` ignores `automl_common` now * Fix: Limit scope of `black` and `isort` formatting * Fix: pre-commit performs no file changes now * Add: `make pre-commit` to `make help` * Fix: `make help` docstring for `make pre-commit` * Fix: isort update sections autosklearn, types * Fix: warnings by flake8 for line length * Fix: Types section for isort * Fix: reenable `flake8` formatting checking * Update: flake8 to use black's line length of 88 * add: ignore D205 pydocstyle * Fix: Import order for futures * Fix: flake8 ignore E203 * Fix: Formatting and fixed long lines * Del: black/isort checker, checked with pre-commit * Fix: test dummy prediction error msg * Add: `coverage` to `pyproject.yaml` * Add: coverage ignore for `if TYPE_CHECKING` * Fix: missing coma * Fix: `toml` dependency for pydoctyle in pre-commit * Fix: isort src path * Add: `make test` * Fix: Add name of module to check coverage of * Maint: isort and black most recent dev * Fix: import typo * Change: format now performs individually on each directory
1 parent 12d2b08 commit be2dfaf

File tree

312 files changed

+19077
-13274
lines changed

Some content is hidden

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

312 files changed

+19077
-13274
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 87% 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: 87%
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

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
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+
extend-ignore =
9+
# No whitespace before ':' in [x : y]
10+
E203
11+
# No lambdas — too strict
12+
E731

0 commit comments

Comments
 (0)