Skip to content

Commit

Permalink
Add no-skips argument in unique ops config generation subprocess run …
Browse files Browse the repository at this point in the history
…method in model analysis (#1060)

In [this PR](#1044), we
skipped some of the model variants due to CI limitation and those model
variants will also be skipped in the model analysis pipeline. To avoid
skipping the model variants in model analysis, added `--no-skips`
argument in the subprocess run method in extraction and generation of
unique ops config test function(i.e
`generate_and_export_unique_ops_tests in
scripts/model_analysis/unique_ops_utils.py`)
  • Loading branch information
chandrasekaranpradeep authored Jan 17, 2025
1 parent 59a36a6 commit a9c73da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/model_analysis/unique_ops_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def generate_and_export_unique_ops_tests(
logger.info(f"Running the tests : {test}")
try:
result = subprocess.run(
["pytest", test, "-vss", pytest_argument],
["pytest", test, "-vss", pytest_argument, "--no-skips"],
capture_output=True,
text=True,
check=True,
Expand Down

0 comments on commit a9c73da

Please sign in to comment.