Skip to content

Commit ca0bbed

Browse files
committed
fix miss hit
1 parent 6e3672e commit ca0bbed

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/miss_hit_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
pull_request:
8-
branches: '*'
8+
branches: ['*']
99

1010
jobs:
1111
build:

.github/workflows/miss_hit_style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
pull_request:
8-
branches: '*'
8+
branches: ['*']
99

1010
jobs:
1111
build:

.github/workflows/moxunit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: Tests
1+
name: tests and coverage
22

33
on:
44
push:
55
branches:
66
- master
77
pull_request:
8-
branches: '*'
8+
branches: ['*']
99

1010
jobs:
1111
build:

miss_hit.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
project_root
2+
13
# style guide (https://florianschanda.github.io/miss_hit/style_checker.html)
24
line_length: 100
35
regex_function_name: "[a-z]+(([A-Z]){1}[A-Za-z]+)*"
6+
regex_parameter_name: "[a-z]+(([A-Z]){1}[A-Za-z0-9]+)*"
47
regex_script_name: "[a-z]+(([A-Z]){1}[A-Za-z]+)*"
58
exclude_dir: "lib"
69
copyright_entity: "Mohamed Rezk"

tests/miss_hit.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# style guide (https://florianschanda.github.io/miss_hit/style_checker.html)
22
line_length: 100
33
regex_function_name: "((test_[a-z]+)|[a-z]+)(([A-Z]){1}[A-Za-z]+)*"
4+
regex_parameter_name: "test_suite|[a-z]+(([A-Z]){1}[A-Za-z]+)*"
45
suppress_rule: "copyright_notice"
56

67
# metrics limit for the code quality (https://florianschanda.github.io/miss_hit/metrics.html)

0 commit comments

Comments
 (0)