Skip to content
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
2 changes: 2 additions & 0 deletions pycons/2024/resources.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Presenter name:, Presentation name:, Presentation type:, Room number:, Repo location:, Slides location, videos:, contact,
my_name, my cool presentation, talk, room 1, , , , ,
4 changes: 2 additions & 2 deletions pycons/2025/resources.csv
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Presenter name:, Presentation name:, Presentation type:, Room number:, Repo location:, Slides location, videos:,
Ines Montani, Building AI with AI, keynote, 1, , https://speakerdeck.com/inesmontani/building-ai-with-ai, ,
Presenter name:, Presentation name:, Presentation type:, Room number:, Repo location:, Slides location, videos:, contact,
Ines Montani, Building AI with AI, keynote, 1, , https://speakerdeck.com/inesmontani/building-ai-with-ai, , https://ines.io/,
9 changes: 6 additions & 3 deletions tests/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ def test_column_count() -> None:
"""
# TODO: Hard coded path for now:
cwd: Path = Path.cwd()
csv_realpath: Path = Path(f"{cwd}/pycons/2025/resources.csv")
print(f"Testing file: {csv_realpath}")
count_columns(csv_realpath)
basedir: Path = Path(f"{cwd}/pycons/")
csv_files: List[Path] = list(basedir.rglob("*/resources.csv"))
print("\n")
for cur_path in csv_files:
print(f"Testing file: {cur_path}")
count_columns(cur_path)