Skip to content

Commit 4153912

Browse files
author
Val Brodsky
committed
emnd
1 parent c3fa178 commit 4153912

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/python-package-develop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Get Latest SDK versions
4545
id: get_sdk_versions
4646
run: |
47-
sdk_versions=$(git tag --list --sort=-version:refname "v.*" | head -n 4)
47+
sdk_versions=$(git tag --list --sort=-version:refname "v.*" | head -n 4 | tr '\n' ' ')
4848
echo "sdk_versions=$sdk_versions"
4949
if [ -z "$sdk_versions" ]; then
5050
echo "No tags found"

.python-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.8.19
1+
3.8.18

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ members = ["libs/*", "examples"]
3535

3636
[tool.pytest.ini_options]
3737
# https://github.com/pytest-dev/pytest-rerunfailures/issues/99
38-
addopts = "-rP -vvv --reruns 1 --reruns-delay 5 --durations=20 -n auto --cov=labelbox --import-mode=importlib --order-group-scope=module"
38+
addopts = "-rP -vvv"
3939
markers = """
4040
slow: marks tests as slow (deselect with '-m "not slow"')
4141
"""

0 commit comments

Comments
 (0)