Skip to content

Commit

Permalink
pytest -rA parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Mortari <[email protected]>
  • Loading branch information
tarilabs committed Nov 11, 2024
1 parent df06068 commit da007cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion clients/python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ test-e2e: deploy-latest-mr

.PHONY: test
test:
poetry run pytest -s
poetry run pytest -s -rA

.PHONY: lint
lint:
Expand Down
2 changes: 2 additions & 0 deletions clients/python/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def tests(session: Session) -> None:
)
session.run(
"pytest",
"-rA",
*session.posargs,
)

Expand All @@ -81,6 +82,7 @@ def e2e_tests(session: Session) -> None:
session.run(
"pytest",
"--e2e",
"-rA",
"--cov",
"--cov-config=pyproject.toml",
*session.posargs,
Expand Down

0 comments on commit da007cd

Please sign in to comment.