Skip to content

Commit d58d9cb

Browse files
committed
build: fixes
1 parent 4313341 commit d58d9cb

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
python setup.py develop
3232
- name: Lint with flake8
3333
run: |
34-
flake8 . --count --select=E9,F63,F7,F82 --max-line-length=80 --show-source --statistics
34+
flake8 . --count --select=E9,F63,F7,F82 --max-line-length=90 --show-source --statistics
3535
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3636
flake8 . --count --exit-zero --max-complexity=10 --statistics
3737
- name: Tests and Coverage

tests/test_parser.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33

44
MSG1 = """feat: allow provided config object to extend other configs
55
6-
BREAKING CHANGE: `extends` key in config file is now used for extending
7-
other config files
6+
BREAKING CHANGE: `extends` key in config file is now used for extending other config files
87
"""
98

109
MSG2 = """refactor!: drop support for Node 6"""
@@ -40,8 +39,7 @@ def test_valid_messages():
4039
assert len(msg.footers) == 1
4140
assert msg.footers[0].key == "BREAKING CHANGE"
4241
assert msg.footers[0].value == (
43-
"`extends` key in config file is now used for extending "
44-
"other config files"
42+
"`extends` key in config file is now used for extending other config files"
4543
)
4644
msg = parse(MSG2)
4745
assert msg.type == ConventionalCommitType.REFACTOR

0 commit comments

Comments
 (0)