diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 302059a9..cae2c7fe 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -9,8 +9,7 @@ jobs: build-test: runs-on: - - self-hosted - - deployer + - benchmark steps: @@ -43,8 +42,7 @@ jobs: - build-test runs-on: - - self-hosted - - deployer + - benchmark steps: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 767fdbc5..55ed1f1a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,8 +42,7 @@ jobs: - build_and_test runs-on: - - self-hosted - - deployer + - benchmark steps: diff --git a/aperturedb/__init__.py b/aperturedb/__init__.py index 2851fc20..3babebc7 100644 --- a/aperturedb/__init__.py +++ b/aperturedb/__init__.py @@ -10,7 +10,7 @@ import signal import sys -__version__ = "0.4.54" +__version__ = "0.4.55" logger = logging.getLogger(__name__) diff --git a/test/adb_timing_tests.py b/test/adb_timing_tests.py index 90238e5f..7ccdb4fb 100644 --- a/test/adb_timing_tests.py +++ b/test/adb_timing_tests.py @@ -13,4 +13,4 @@ os.system(command) diff = datetime.now() - start print(diff) - assert diff.total_seconds() <= 1.0, f"Command {command} took too long" + assert diff.total_seconds() <= 1.5, f"Command {command} took too long"