Skip to content

Commit 4fcc31b

Browse files
committed
Revert "Speed up test execution"
This reverts commit 1ea9c69.
1 parent e5fabce commit 4fcc31b

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

opentelemetry-api/pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[build-system]
2-
requires = []
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
34

45
[project]
56
name = "opentelemetry-api"
67
description = "OpenTelemetry Python API"
78
readme = "README.rst"
9+
license = "Apache-2.0"
810
requires-python = ">=3.7"
911
authors = [
1012
{ name = "OpenTelemetry Authors", email = "[email protected]" },

opentelemetry-sdk/pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[build-system]
2-
requires = []
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
34

45
[project]
56
name = "opentelemetry-sdk"
67
dynamic = ["version"]
78
description = "OpenTelemetry Python SDK"
89
readme = "README.rst"
10+
license = "Apache-2.0"
911
requires-python = ">=3.7"
1012
authors = [
1113
{ name = "OpenTelemetry Authors", email = "[email protected]" },

opentelemetry-semantic-conventions/pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[build-system]
2-
requires = []
2+
requires = ["hatchling"]
3+
build-backend = "hatchling.build"
34

45
[project]
56
name = "opentelemetry-semantic-conventions"
67
dynamic = ["version"]
78
description = "OpenTelemetry Semantic Conventions"
89
readme = "README.rst"
10+
license = "Apache-2.0"
911
requires-python = ">=3.7"
1012
authors = [
1113
{ name = "OpenTelemetry Authors", email = "[email protected]" },

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,10 @@ changedir =
125125

126126
commands_pre =
127127
; Install without -e to test the actual installation
128+
py3{7,8,9,10,11}: python -m pip install -U pip setuptools wheel
128129
; Install common packages for all the tests. These are not needed in all the
129130
; cases but it saves a lot of boilerplate in this file.
130-
opentelemetry: pip install --no-deps --no-build-isolation -e {toxinidir}/opentelemetry-sdk
131+
opentelemetry: pip install {toxinidir}/opentelemetry-api {toxinidir}/opentelemetry-semantic-conventions {toxinidir}/opentelemetry-sdk {toxinidir}/tests/opentelemetry-test-utils
131132

132133
protobuf: pip install {toxinidir}/opentelemetry-proto
133134

0 commit comments

Comments
 (0)