Skip to content

Commit 4d3f0cb

Browse files
authored
Merge pull request #148 from Remi-Gau/remi-update_miss_hit
[INFRA] Update miss hit configuration
2 parents 1ede401 + 59aa522 commit 4d3f0cb

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/workflows/miss_hit.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,16 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip setuptools
31-
pip3 install install miss_hit
31+
pip3 install -r requirements.txt
3232
33-
- name: Miss_hit code quality
33+
- name: MISS_HIT Code style
3434
run: |
35-
mh_metric . --ci
35+
mh_style --process-slx
3636
37-
- name: Miss_hit code style
37+
- name: MISS_HIT Metrics
3838
run: |
39-
mh_style .
39+
mh_metric --ci
40+
41+
- name: MISS_HIT Bug finder
42+
run: |
43+
mh_lint

docs/requirements.txt renamed to requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ Sphinx
22
sphinxcontrib-matlabdomain
33
sphinxcontrib-napoleon
44
sphinx_rtd_theme
5+
miss_hit==0.9.15

src/utils/computeFOV.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
%
66
% computes the number of degrees of visual angle in the whole field of view
77
%
8-
% δ = 2 arctan ( d / 2D )
8+
% delta = 2 arctan ( d / 2D )
99
%
10-
% δ is the angular diameter, and d is the actual diameter of the object,
10+
% delta is the angular diameter, and d is the actual diameter of the object,
1111
% and D is the distance to the object.
1212
% The result obtained is in radians.
1313
%

src/utils/printCreditsCppPtb.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function printCreditsCppPtb()
1010
end
1111

1212
contributors = { ...
13-
'Rémi Gau', ...
13+
'Remi Gau', ...
1414
'Marco Barilari', ...
1515
'Ceren Battal'};
1616

0 commit comments

Comments
 (0)