Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions plugin_tests/h_ray/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,20 @@
# specific language governing permissions and limitations
# under the License.

import sys

from hamilton import telemetry

# disable telemetry for all tests!
telemetry.disable_telemetry()

# Skip tests that require packages not yet available on Python 3.14
collect_ignore = []
if sys.version_info >= (3, 14):
collect_ignore.extend(
[
# ray - no Python 3.14 support yet
"test_h_ray.py",
"test_parse_ray_remote_options_from_tags.py",
]
)
2 changes: 1 addition & 1 deletion ui/sdk/ruff.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
line-length = 100


[lint.per-file-ignores]
[per-file-ignores]
# skip line length for API client files.
"src/dagworks/api/*" = ["E501"]