Skip to content

Commit df607eb

Browse files
committed
Skip windows
1 parent ff6ea28 commit df607eb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/brevitas_examples/test_llm.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -417,9 +417,8 @@ def test_small_models_quant_layer(caplog, layer_args):
417417
if args.replace_rmsnorm:
418418
if torch_version < version.parse('2.4'):
419419
pytest.skip("Replacing RMSNorm requires torch 2.4+ or greater")
420-
if hasattr(
421-
args,
422-
'graph_rotation') and args.graph_rotation == 'fx' and platform.system() == 'win32':
420+
if hasattr(args, 'graph_rotation') and args.graph_rotation == 'fx' and platform.system(
421+
) == 'Windows':
423422
pytest.skip("Skipping dynamo + windows")
424423
float_ppl, quant_ppl, model = validate_args_and_run_main(args)
425424
assert_layer_types(model, exp_layer_types)

0 commit comments

Comments
 (0)