Skip to content

Commit

Permalink
Run grpc interceptor separately.
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertSamoilescu committed Jul 15, 2024
1 parent 5e756e0 commit 55a271e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,17 @@ commands =
python -m pytest {posargs} -n auto \
{toxinidir}/tests \
--ignore={toxinidir}/tests/kafka \
--ignore={toxinidir}/tests/parallel
--ignore={toxinidir}/tests/parallel \
--ignore={toxinidir}/tests/grpc/test_interceptor.py
# kafka and parallel tests are failing for macos when running in parallel
# with the entire test suite. So, we run them separately.
# Also, we run the grpc interceptor test separately because
# other tests will interfere with the metrics counter when
# running in parallel.
python -m pytest {posargs} \
{toxinidir}/tests/kafka \
{toxinidir}/tests/parallel
{toxinidir}/tests/parallel \
{toxinidir}/tests/grpc/test_interceptor.py
set_env =
GITHUB_SERVER_URL = {env:GITHUB_SERVER_URL:https\://github.com}
GITHUB_REPOSITORY = {env:GITHUB_REPOSITORY:SeldonIO/MLServer}
Expand Down

0 comments on commit 55a271e

Please sign in to comment.