Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

detach speedup test in fast test #4071

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pipelines/fast-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,10 +179,12 @@ stages:
python -m pytest ut --cov-config=.coveragerc \
--ignore=ut/sdk/test_pruners.py \
--ignore=ut/sdk/test_compressor_tf.py \
--ignore=ut/sdk/test_compressor_torch.py
--ignore=ut/sdk/test_compressor_torch.py \
--ignore=ut/sdk/test_model_speedup.py
python -m pytest ut/sdk/test_pruners.py --cov-config=.coveragerc --cov-append
python -m pytest ut/sdk/test_compressor_tf.py --cov-config=.coveragerc --cov-append
python -m pytest ut/sdk/test_compressor_torch.py --cov-config=.coveragerc --cov-append
python -m pytest ut/sdk/test_model_speedup.py --cov-config=.coveragerc --cov-append
displayName: Python unit test

- script: |
Expand Down