forked from Archive/PX4-Autopilot
mavsdk_tests: enable VTOL tests as well
This commit is contained in:
parent
cc249f980b
commit
c363a15ad8
|
@ -17,11 +17,11 @@ test_matrix = [
|
|||
"test_filter": "[multicopter]",
|
||||
"timeout_min": 10,
|
||||
},
|
||||
# {
|
||||
# "model": "standard_vtol",
|
||||
# "test_filter": "[vtol]",
|
||||
# "timeout_min": 10,
|
||||
# }
|
||||
{
|
||||
"model": "standard_vtol",
|
||||
"test_filter": "[vtol]",
|
||||
"timeout_min": 10,
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
#include "autopilot_tester.h"
|
||||
|
||||
|
||||
TEST_CASE("Takeoff and land", "[multicopter]")
|
||||
TEST_CASE("Takeoff and land", "[multicopter][vtol]")
|
||||
{
|
||||
AutopilotTester tester;
|
||||
tester.connect(connection_url);
|
||||
|
@ -23,7 +23,7 @@ TEST_CASE("Takeoff and land", "[multicopter]")
|
|||
tester.wait_until_disarmed();
|
||||
}
|
||||
|
||||
TEST_CASE("Fly a square missions", "[multicopter]")
|
||||
TEST_CASE("Fly a square missions", "[multicopter][vtol]")
|
||||
{
|
||||
AutopilotTester tester;
|
||||
tester.connect(connection_url);
|
||||
|
@ -48,4 +48,4 @@ TEST_CASE("Fly a square missions", "[multicopter]")
|
|||
tester.execute_rtl();
|
||||
tester.wait_until_disarmed();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue