Skip to content

Commit

Permalink
flake fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cgarmor committed Jan 14, 2025
1 parent 2e485f9 commit 763d5b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,6 @@
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}



def remove_module_docstring(app, what, name, obj, options, lines):
"""Remove all module docstrings to exclude license header"""
if what == "module":
Expand Down
2 changes: 2 additions & 0 deletions toolium/test/utils/test_dataset_replace_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,7 @@ def test_replace_param_now_offsets_with_and_without_format_and_more():
datetime.datetime.utcnow() + datetime.timedelta(minutes=10), '%d/%m/%Y %H:%M:%S')
assert param == f'The date {offset_date} was yesterday and I have an appointment at {offset_datetime}'


@pytest.mark.parametrize('in_param, number_of_digits_in_fractional_part, out_param',
[['7.5', '2', 7.5],
['3.33333333', '3', 3.333],
Expand All @@ -346,6 +347,7 @@ def test_replace_param_round_with_type_inference(in_param, number_of_digits_in_f
param = replace_param(f'[ROUND:{in_param}::{number_of_digits_in_fractional_part}]')
assert param == out_param


@pytest.mark.parametrize('in_param, number_of_digits_in_fractional_part, out_param',
[['7.5', '2', '7.50'],
['3.33333333', '3', '3.333'],
Expand Down

0 comments on commit 763d5b8

Please sign in to comment.