Skip to content

Commit

Permalink
Remove indention in generate_integration_tests_without_db_matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tkilias committed Aug 25, 2023
1 parent cc8b2be commit c1d69b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def generate_integration_tests_without_db_matrix(session: Session):
without_db_test_directory = INTEGRATION_TEST_DIRECTORY / "without_db"
test_files = without_db_test_directory.rglob("test_*.py")
output = [_generate_test_matrix_entry(test_file) for test_file in test_files]
print(json.dumps(output, indent=2))
print(json.dumps(output))


@nox.session(python=False)
Expand Down Expand Up @@ -76,7 +76,7 @@ def run_python_integration_tests_with_db(session: Session):

@nox.session(python=False)
def run_python_test(session: Session):
_run_in_dev_env_poetry_call(session, "pytest", session.posargs)
_run_in_dev_env_poetry_call(session, "pytest", *session.posargs)


@nox.session(python=False)
Expand Down

0 comments on commit c1d69b3

Please sign in to comment.