Skip to content

Commit

Permalink
precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin-Anthony committed Oct 8, 2024
1 parent 3bb9128 commit a06973b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/neox_args/test_neoxargs_usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ def test_neoxargs_usage():

# find args matches
matches = list(
re.findall(r"(?<=neox_args\.).{2,}?(?=[\s\n(){}+-/*;:,=,[,\]])", file_contents)
re.findall(
r"(?<=neox_args\.).{2,}?(?=[\s\n(){}+-/*;:,=,[,\]])", file_contents
)
)
if len(matches) == 0:
continue
Expand Down
1 change: 1 addition & 0 deletions tests/unit/test_format_conversion_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from tests.common import simulate_deepy_env, save_random_model
from megatron.neox_arguments.neox_args import NeoXArgsTokenizer


@pytest.mark.skip(
reason="Conversion test is skipped until we fix the CUDA + torch multiprocessing issue."
)
Expand Down

0 comments on commit a06973b

Please sign in to comment.