Skip to content
Closed
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions tests/python/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@ def pytest_addoption(parser):
def pytest_collection_modifyitems(config, items):
if not config.getoption("--enable-corstone300-tests"):
for item in items:
# See https://github.com/apache/tvm/issues/10150
if len(item.location) == 3 and item.location[0].startswith(
"tests/python/frontend/tensorflow"
):
item.add_marker(pytest.mark.subprocessed)

if "corstone300" in item.keywords:
item.add_marker(
pytest.mark.skip(
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/task_ci_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ set -o pipefail
#
echo "Additional setup in ${CI_IMAGE_NAME}"

python3 -m pip install --user tlcpack-sphinx-addon==0.2.1 synr==0.6.0
python3 -m pip install --user tlcpack-sphinx-addon==0.2.1 synr==0.6.0 pytest-subprocessed

# Rebuild standalone_crt in build/ tree. This file is not currently archived by pack_lib() in
# Jenkinsfile. We expect config.cmake to be present from pack_lib().
Expand Down