File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+ on :
3
+ push :
4
+ pull_request :
5
+ workflow_dispatch :
6
+ jobs :
7
+ pytest :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+ with :
12
+ submodules : recursive
13
+ - uses : actions/setup-python@v5
14
+ with :
15
+ python-version : 3.x
16
+ - run : pip install --upgrade pip
17
+ - run : pip install numpy pytest setuptools
18
+ - run : pip install --editable modules/mavlink/pymavlink
19
+ - run : pytest --ignore=modules/DroneCAN
20
+ --ignore=modules/gtest
21
+ --ignore=modules/mavlink/pymavlink/generator/C/test/posix/sha256_test.py
22
+ --ignore=modules/waf/playground
23
+ --ignore=Tools/autotest/test_build_options.py
24
+ --ignore=Tools/autotest/test_param_upgrade.py
25
+ --ignore=Tools/FilterTestTool/run_filter_test.py
26
+ --ignore=Tools/ros2/ardupilot_dds_tests/test
You can’t perform that action at this time.
0 commit comments