From 997f4d5a5d4d89935fe01f65d5d3227b06fcef50 Mon Sep 17 00:00:00 2001 From: Christoph Kuhnke Date: Wed, 22 May 2024 18:03:15 +0200 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Torsten Kilias --- justfile | 2 +- pytest-saas/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index 2716b17..f61c231 100644 --- a/justfile +++ b/justfile @@ -6,7 +6,7 @@ default: # Run tests for one or multiple projects within this respository test +projects=PROJECTS: - #!/usr/bin/env python + #!/usr/bin/env python3 import subprocess, sys rc = 0 def run(command): diff --git a/pytest-saas/README.md b/pytest-saas/README.md index e576e13..0239c53 100644 --- a/pytest-saas/README.md +++ b/pytest-saas/README.md @@ -22,13 +22,13 @@ pip install pytest-exasol-saas By default the fixtures in pytest-exasol-saas Plugin will create instances of Exasol SaaS database with scope `session`. -If you want to use an existing instance instead, then you can provide the instance's ID with command line option `--saas-database-id ` to pytest. +If you want to use an existing instance instead, then you can provide the instance's ID with the command line option `--saas-database-id ` to pytest. ### Keeping Database Instances After the Test Session By default the fixtures in pytest-exasol-saas Plugin will remove the created database instances after the session or in case of errors. -However, if you provide command line option `--keep-saas-database` then pytest-exasol-saas Plugin will _keep_ these instances for subsequent inspection or reuse. +However, if you provide the command line option `--keep-saas-database` then the pytest-exasol-saas plugin will _keep_ these instances for subsequent inspection or reuse. Please note hat long-running instances will cause significant costs.