We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3923914 commit 7f77268Copy full SHA for 7f77268
tests/test_update_registry.py
@@ -4,6 +4,8 @@
4
import pytest
5
import pandas as pd
6
7
+from pathlib import Path
8
+
9
from projectcard import ProjectCard
10
from projectcard import write_card, read_card
11
@@ -206,7 +208,7 @@ def test_read_write_project_card(request):
206
208
207
209
card = read_card(card_file, validate=True)
210
card.__dict__.pop("file")
- write_card(card, filename=output_file)
211
+ write_card(card, filename=Path(output_file))
212
213
card_from_disk = read_card(output_file, validate=False)
214
card_from_disk.__dict__.pop("file")
0 commit comments