This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
dora-rs
/
dora
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
124
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
Adding test to piper, ugv, pyorbbeck node
tags/v0.3.7rc2
haixuanTao
1 year ago
parent
d2bcff1aa2
commit
393f136707
3 changed files
with
23 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+9
-0
node-hub/dora-piper/tests/test_piper.py
+2
-1
node-hub/dora-pyorbbecksdk/tests/test_pyorbbecksdk.py
+12
-0
node-hub/dora-ugv/tests/test_ugv.py
+ 9
- 0
node-hub/dora-piper/tests/test_piper.py
View File
@@ -0,0 +1,9 @@
def test_import_main():
import piper_sdk
# from opencv_video_capture.main import main
# skip test as pyorbbecksdk installation is a bit complicated
# Check that everything is working, and catch dora Runtime Exception as we're not running in a dora dataflow.
# with pytest.raises(RuntimeError):
# main()
+ 2
- 1
node-hub/dora-pyorbbecksdk/tests/test_pyorbbecksdk.py
View File
@@ -1,6 +1,7 @@
def test_import_main():
import pyorbbecksdk
# from opencv_video_capture.main import main
pass
# skip test as pyorbbecksdk installation is a bit complicated
# Check that everything is working, and catch dora Runtime Exception as we're not running in a dora dataflow.
+ 12
- 0
node-hub/dora-ugv/tests/test_ugv.py
View File
@@ -0,0 +1,12 @@
import pytest
def test_import_main():
import ugv_sdk_py
# from opencv_video_capture.main import main
# skip test as pyorbbecksdk installation is a bit complicated
# Check that everything is working, and catch dora Runtime Exception as we're not running in a dora dataflow.
# with pytest.raises(RuntimeError):
# main()
Write
Preview
Loading…
Cancel
Save