Skip to content

Commit

Permalink
running with my-integration-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsimb committed Oct 9, 2024
1 parent a7fac99 commit 3032086
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pytest-extension/noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
def my_integration_tests(session: Session) -> None:
path = PROJECT_CONFIG.root / "test" / "integration"
base_command = ["poetry", "run"]
pytest_command = ["pytest", "-v", "-s", f"{path}"]
pytest_command = ["pytest", "-v", f"{path}"]
command = base_command + pytest_command
session.run(*command)
2 changes: 1 addition & 1 deletion pytest-extension/test/integration/pytest_extension_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,4 @@ def test_bucketfs_cli_args(backend, bucketfs_cli_args):
pytester.makepyfile(test_code)
result = pytester.runpytest('-s', BACKEND_OPTION, BACKEND_ONPREM)
assert result.ret == pytest.ExitCode.OK
result.assert_outcomes(passed=12, skipped=0)
result.assert_outcomes(passed=6, skipped=6)

0 comments on commit 3032086

Please sign in to comment.