mirror of
https://github.com/open-telemetry/opentelemetry-python-contrib.git
synced 2025-08-02 11:31:52 +08:00

* opentelemetry-instrumentation-system-metrics: don't report files descriptors on windows * Run manually added tox env tests on windows too * Add jobs for botocore and system-metrics on windows * Skip open file descriptor test on windows --------- Co-authored-by: Tammy Baylis <96076570+tammy-baylis-swi@users.noreply.github.com>
17 lines
501 B
Python
17 lines
501 B
Python
from pathlib import Path
|
|
|
|
from generate_workflows_lib import (
|
|
generate_lint_workflow,
|
|
generate_misc_workflow,
|
|
generate_test_workflow,
|
|
)
|
|
|
|
tox_ini_path = Path(__file__).parent.parent.parent.joinpath("tox.ini")
|
|
workflows_directory_path = Path(__file__).parent
|
|
|
|
generate_test_workflow(
|
|
tox_ini_path, workflows_directory_path, "ubuntu-latest", "windows-latest"
|
|
)
|
|
generate_lint_workflow(tox_ini_path, workflows_directory_path)
|
|
generate_misc_workflow(tox_ini_path, workflows_directory_path)
|