Skip to content

Commit e79dd7d

Browse files
[Backport 8.16] Build dists as part of CI (#2710)
Co-authored-by: Quentin Pradet <[email protected]>
1 parent 0070b83 commit e79dd7d

File tree

3 files changed

+22
-8
lines changed

3 files changed

+22
-8
lines changed

.github/workflows/ci.yml

+20-5
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,32 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout Repository
11-
uses: actions/checkout@v3
11+
uses: actions/checkout@v4
1212
- name: Set up Python 3.x
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.11"
15+
python-version: "3.x"
1616
- name: Install dependencies
1717
run: |
1818
python3 -m pip install nox
1919
- name: Lint the code
2020
run: nox -s lint
2121

22+
package:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Checkout Repository
26+
uses: actions/checkout@v4
27+
- name: Set up Python 3.x
28+
uses: actions/setup-python@v5
29+
with:
30+
python-version: "3.11"
31+
- name: Install dependencies
32+
run: |
33+
python3 -m pip install build
34+
- name: Build dists
35+
run: python utils/build-dists.py
36+
2237
test-linux:
2338
strategy:
2439
fail-fast: false
@@ -32,9 +47,9 @@ jobs:
3247
continue-on-error: false
3348
steps:
3449
- name: Checkout Repository
35-
uses: actions/checkout@v3
50+
uses: actions/checkout@v4
3651
- name: Set Up Python - ${{ matrix.python-version }}
37-
uses: actions/setup-python@v4
52+
uses: actions/setup-python@v5
3853
with:
3954
python-version: ${{ matrix.python-version }}
4055
- name: Install Dependencies

elasticsearch/_otel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def helpers_span(self, span_name: str) -> Generator[OpenTelemetrySpan, None, Non
102102

103103
@contextlib.contextmanager
104104
def use_span(self, span: OpenTelemetrySpan) -> Generator[None, None, None]:
105-
if not self.enabled or self.tracer is None:
105+
if not self.enabled or self.tracer is None or span.otel_span is None:
106106
yield
107107
return
108108

elasticsearch/_sync/client/utils.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,9 @@
5656
url_to_node_config,
5757
)
5858

59-
from elasticsearch.exceptions import GeneralAvailabilityWarning
60-
6159
from ..._version import __versionstr__
6260
from ...compat import to_bytes, to_str, warn_stacklevel
61+
from ...exceptions import GeneralAvailabilityWarning
6362

6463
if TYPE_CHECKING:
6564
from ._base import NamespacedClient

0 commit comments

Comments
 (0)