Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,17 @@ Status](https://img.shields.io/pypi/v/testit-python-commons?style=plastic)](http

You can change nothing, it's full compatible with previous versions of adapters for local run on all OS.

### How to run in an isolated environment?

The adapter tries to download the correct sync-storage version from GitHub. If that is not possible, prepare the sync-storage binary yourself:

1. Find the sync-storage version for your adapter release: check out the release tag and look for the `SYNC_STORAGE_VERSION` value. You can use our [script](https://github.com/testit-tms/adapters-python/tree/main/scripts/get_sync_storage_version.sh).

2. Download the correct binary for your OS and version from our [release page](https://github.com/testit-tms/sync-storage-public/releases).

3. Place the downloaded binary at `./build/.caches/syncstorage-v0.3.3-windows_amd64.exe` in your test project (the version in the filename is an example).

4. Run your tests as usual; the adapter will pick up and run the version specified in `SYNC_STORAGE_VERSION`.

### How to run 4.0+ with CI/CD?

Expand Down
2 changes: 1 addition & 1 deletion testit-adapter-behave/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.3"
VERSION = "4.2.4"

setup(
name='testit-adapter-behave',
Expand Down
2 changes: 1 addition & 1 deletion testit-adapter-nose/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "4.2.3"
VERSION = "4.2.4"

setup(
name='testit-adapter-nose',
Expand Down
2 changes: 1 addition & 1 deletion testit-adapter-pytest/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.3"
VERSION = "4.2.4"

setup(
name='testit-adapter-pytest',
Expand Down
2 changes: 1 addition & 1 deletion testit-adapter-robotframework/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.3"
VERSION = "4.2.4"

setup(
name='testit-adapter-robotframework',
Expand Down
2 changes: 1 addition & 1 deletion testit-python-commons/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import find_packages, setup

VERSION = "4.2.3"
VERSION = "4.2.4"

setup(
name='testit-python-commons',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class SyncStorageRunner:
across multiple workers.
"""

SYNC_STORAGE_VERSION = "v0.3.3"
SYNC_STORAGE_VERSION = "v0.3.4"
SYNC_STORAGE_REPO_URL = (
"https://github.com/testit-tms/sync-storage-public/releases/download/"
)
Expand Down
2 changes: 1 addition & 1 deletion update_versions.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

NEW_VERSION="4.2.3"
NEW_VERSION="4.2.4"
TESTIT_API_CLIENT_VERSION="7.5.10"

echo "Updating all adapters to version: $NEW_VERSION"
Expand Down
Loading