Skip to content

Commit

Permalink
Remove directory creation (#706)
Browse files Browse the repository at this point in the history
Closes #705

Still need to come up with a test scenario for this
  • Loading branch information
cthoyt authored Jan 11, 2023
1 parent 4bb5178 commit 4d01add
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/bioregistry/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,17 +83,14 @@
BENCHMARKS = EXPORT_DIRECTORY.joinpath("benchmarks")

URI_PARSING = BENCHMARKS.joinpath("uri_parsing")
URI_PARSING.mkdir(exist_ok=True, parents=True)
URI_PARSING_DATA_PATH = URI_PARSING.joinpath("data.tsv")
URI_PARSING_SVG_PATH = URI_PARSING.joinpath("results.svg")

CURIE_PARSING = BENCHMARKS.joinpath("curie_parsing")
CURIE_PARSING.mkdir(exist_ok=True, parents=True)
CURIE_PARSING_DATA_PATH = CURIE_PARSING.joinpath("data.tsv")
CURIE_PARSING_SVG_PATH = CURIE_PARSING.joinpath("results.svg")

CURIE_VALIDATION = BENCHMARKS.joinpath("curie_validation")
CURIE_VALIDATION.mkdir(exist_ok=True, parents=True)
CURIE_VALIDATION_DATA_PATH = CURIE_VALIDATION.joinpath("data.tsv")
CURIE_VALIDATION_SVG_PATH = CURIE_VALIDATION.joinpath("results.svg")

Expand Down

0 comments on commit 4d01add

Please sign in to comment.