-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9d5154
commit 5913fdf
Showing
6 changed files
with
48 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
import os | ||
import sys | ||
import pathlib | ||
from pathlib import Path | ||
|
||
sys.path.insert(0, ".") | ||
|
||
# check if output path exists | ||
out_dir = pathlib.Path("./tests/out") | ||
if not os.path.exists(out_dir): | ||
os.makedirs(out_dir) | ||
out_dir = Path("./tests/out") | ||
if not out_dir.exists(): | ||
out_dir.mkdir() | ||
|
||
out_folders = ["json_test", "pcd_test", "cv_test", "tiff_test", "visual_test"] | ||
|
||
for o in out_folders: | ||
sub_dir = out_dir / o | ||
if not os.path.exists(sub_dir): | ||
os.mkdir(sub_dir) | ||
if not sub_dir.exists(): | ||
sub_dir.mkdir() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import sys | ||
import re | ||
import pytest | ||
import numpy as np | ||
|