Skip to content

Commit 6ad9d1a

Browse files
authored
Merge branch 'main' into main
2 parents 79ce99a + de8b9e0 commit 6ad9d1a

File tree

26 files changed

+8
-48
lines changed

26 files changed

+8
-48
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,12 @@ jobs:
9292
- name: Windows does not let git check out files with long names
9393
if: ${{ matrix.os == 'windows-2019'}}
9494
run: git config --system core.longpaths true
95-
- name: run tox
95+
- name: run pytest with --benchmark-skip
96+
if: ${{ matrix.package == 'sdk' || matrix.package == 'exporter-otlp-proto-grpc' }}
9697
run: tox -f ${{ matrix.python-version }}-${{ matrix.package }} -- -ra --benchmark-skip
98+
- name: run pytest without --benchmark-skip
99+
if: ${{ !(matrix.package == 'sdk' || matrix.package == 'exporter-otlp-proto-grpc') }}
100+
run: tox -f ${{ matrix.python-version }}-${{ matrix.package }} -- -ra
97101
misc:
98102
strategy:
99103
fail-fast: false

dev-requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,5 @@ ruamel.yaml==0.17.21
1818
asgiref==3.7.2
1919
psutil==5.9.6
2020
GitPython==3.1.41
21-
flaky==3.7.0
2221
pre-commit==3.7.0; python_version >= '3.9'
2322
pre-commit==3.5.0; python_version < '3.9'

docs/getting_started/tests/requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ certifi==2023.7.22
44
charset-normalizer==2.0.12
55
click==8.1.7
66
Deprecated==1.2.14
7-
flaky==3.7.0
87
Flask==2.3.3
98
idna==3.7
109
importlib-metadata==6.8.0
@@ -16,7 +15,6 @@ packaging==24.0
1615
pluggy==1.3.0
1716
py-cpuinfo==9.0.0
1817
pytest==7.4.4
19-
pytest-benchmark==4.0.0
2018
requests==2.32.3
2119
tomli==2.0.1
2220
typing_extensions==4.8.0

exporter/opentelemetry-exporter-opencensus/test-requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
asgiref==3.7.2
22
Deprecated==1.2.14
3-
flaky==3.7.0
43
grpcio==1.62.0
54
importlib-metadata==6.11.0
65
iniconfig==2.0.0
@@ -10,7 +9,6 @@ pluggy==1.5.0
109
protobuf==3.20.3
1110
py-cpuinfo==9.0.0
1211
pytest==7.4.4
13-
pytest-benchmark==4.0.0
1412
tomli==2.0.1
1513
typing_extensions==4.10.0
1614
wrapt==1.16.0

exporter/opentelemetry-exporter-otlp-proto-common/test-requirements-0.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
asgiref==3.7.2
22
Deprecated==1.2.14
3-
flaky==3.7.0
43
importlib-metadata==6.11.0
54
iniconfig==2.0.0
65
packaging==24.0
76
pluggy==1.5.0
87
protobuf==3.20.3
98
py-cpuinfo==9.0.0
109
pytest==7.4.4
11-
pytest-benchmark==4.0.0
1210
tomli==2.0.1
1311
typing_extensions==4.10.0
1412
wrapt==1.16.0

exporter/opentelemetry-exporter-otlp-proto-common/test-requirements-1.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
asgiref==3.7.2
22
Deprecated==1.2.14
3-
flaky==3.7.0
43
importlib-metadata==6.11.0
54
iniconfig==2.0.0
65
packaging==24.0
76
pluggy==1.5.0
87
protobuf==4.25.3
98
py-cpuinfo==9.0.0
109
pytest==7.4.4
11-
pytest-benchmark==4.0.0
1210
tomli==2.0.1
1311
typing_extensions==4.10.0
1412
wrapt==1.16.0

exporter/opentelemetry-exporter-otlp-proto-grpc/test-requirements-0.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
asgiref==3.7.2
22
Deprecated==1.2.14
3-
flaky==3.7.0
43
googleapis-common-protos==1.62.0
54
grpcio==1.62.0
65
importlib-metadata==6.11.0

exporter/opentelemetry-exporter-otlp-proto-grpc/test-requirements-1.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
asgiref==3.7.2
22
Deprecated==1.2.14
3-
flaky==3.7.0
43
googleapis-common-protos==1.62.0
54
grpcio==1.62.0
65
importlib-metadata==6.11.0

exporter/opentelemetry-exporter-otlp-proto-http/test-requirements-0.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ asgiref==3.7.2
22
certifi==2024.2.2
33
charset-normalizer==3.3.2
44
Deprecated==1.2.14
5-
flaky==3.7.0
65
googleapis-common-protos==1.62.0
76
idna==3.7
87
importlib-metadata==6.11.0
@@ -12,7 +11,6 @@ pluggy==1.5.0
1211
protobuf==3.20.3
1312
py-cpuinfo==9.0.0
1413
pytest==7.4.4
15-
pytest-benchmark==4.0.0
1614
PyYAML==6.0.1
1715
requests==2.32.3
1816
responses==0.24.1

exporter/opentelemetry-exporter-otlp-proto-http/test-requirements-1.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ asgiref==3.7.2
22
certifi==2024.2.2
33
charset-normalizer==3.3.2
44
Deprecated==1.2.14
5-
flaky==3.7.0
65
googleapis-common-protos==1.62.0
76
idna==3.7
87
importlib-metadata==6.11.0
@@ -12,7 +11,6 @@ pluggy==1.5.0
1211
protobuf==4.25.3
1312
py-cpuinfo==9.0.0
1413
pytest==7.4.4
15-
pytest-benchmark==4.0.0
1614
PyYAML==6.0.1
1715
requests==2.32.3
1816
responses==0.24.1

0 commit comments

Comments
 (0)