Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Broken PO tests corrected #1766

Merged
merged 1 commit into from
Oct 30, 2024
Merged
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
4 changes: 2 additions & 2 deletions examples/data_types_and_io/data_types_and_io/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ def normalize_csv_file(
if __name__ == "__main__":
default_files = [
(
"https://people.sc.fsu.edu/~jburkardt/data/csv/biostats.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/biostats.csv",
["Name", "Sex", "Age", "Heights (in)", "Weight (lbs)"],
["Age"],
),
(
"https://people.sc.fsu.edu/~jburkardt/data/csv/faithful.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/faithful.csv",
["Index", "Eruption length (mins)", "Eruption wait (mins)"],
["Eruption length (mins)"],
),
Expand Down
4 changes: 2 additions & 2 deletions examples/data_types_and_io/data_types_and_io/folder.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def download_and_normalize_csv_files(
# Run the workflow locally
if __name__ == "__main__":
csv_urls = [
"https://people.sc.fsu.edu/~jburkardt/data/csv/biostats.csv",
"https://people.sc.fsu.edu/~jburkardt/data/csv/faithful.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/biostats.csv",
"https://raw.githubusercontent.com/flyteorg/flytesnacks/refs/heads/master/examples/data_types_and_io/test_data/faithful.csv",
]
columns_metadata = [
["Name", "Sex", "Age", "Heights (in)", "Weight (lbs)"],
Expand Down
Loading