Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TVMC] Allow manual shape specification in tvmc #7366

Merged
merged 13 commits into from
Feb 9, 2021
Prev Previous commit
add -s to setup-pytest-env.sh for clearer error msgs
  • Loading branch information
Jocelyn committed Feb 9, 2021
commit ac2dbd6dfd29a81c44e6db081b535d10e7036b29
4 changes: 2 additions & 2 deletions tests/scripts/setup-pytest-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
set +u

if [[ ! -z $CI_PYTEST_ADD_OPTIONS ]]; then
export PYTEST_ADDOPTS="-v $CI_PYTEST_ADD_OPTIONS $PYTEST_ADDOPTS"
export PYTEST_ADDOPTS="-s -v $CI_PYTEST_ADD_OPTIONS $PYTEST_ADDOPTS"
else
export PYTEST_ADDOPTS="-v $PYTEST_ADDOPTS"
export PYTEST_ADDOPTS="-s -v $PYTEST_ADDOPTS"
fi
set -u

Expand Down