@@ -685,7 +685,6 @@ def test_multi_hop_2(self):
685685 result = execute_query (query , "ontime_flights" )
686686 assert "error" not in result , f"Query failed: { result } "
687687
688- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
689688 def test_vlp_exact_0 (self ):
690689 """
691690 Variable-length path with exact hops
@@ -695,7 +694,7 @@ def test_vlp_exact_0(self):
695694 result = execute_query (query , "ontime_flights" )
696695 assert "error" not in result , f"Query failed: { result } "
697696
698- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap " )
697+ @pytest .mark .skip (reason = "Invalid test: Airport has no 'airport' property (valid: code, city, state) " )
699698 def test_vlp_exact_1 (self ):
700699 """
701700 Variable-length path with exact hops
@@ -705,7 +704,6 @@ def test_vlp_exact_1(self):
705704 result = execute_query (query , "ontime_flights" )
706705 assert "error" not in result , f"Query failed: { result } "
707706
708- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
709707 def test_vlp_exact_2 (self ):
710708 """
711709 Variable-length path with exact hops
@@ -715,7 +713,6 @@ def test_vlp_exact_2(self):
715713 result = execute_query (query , "ontime_flights" )
716714 assert "error" not in result , f"Query failed: { result } "
717715
718- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
719716 def test_vlp_range_0 (self ):
720717 """
721718 Variable-length path with range
@@ -725,7 +722,6 @@ def test_vlp_range_0(self):
725722 result = execute_query (query , "ontime_flights" )
726723 assert "error" not in result , f"Query failed: { result } "
727724
728- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
729725 def test_vlp_range_1 (self ):
730726 """
731727 Variable-length path with range
@@ -735,7 +731,6 @@ def test_vlp_range_1(self):
735731 result = execute_query (query , "ontime_flights" )
736732 assert "error" not in result , f"Query failed: { result } "
737733
738- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
739734 def test_vlp_range_2 (self ):
740735 """
741736 Variable-length path with range
@@ -745,7 +740,6 @@ def test_vlp_range_2(self):
745740 result = execute_query (query , "ontime_flights" )
746741 assert "error" not in result , f"Query failed: { result } "
747742
748- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
749743 def test_vlp_path_var_0 (self ):
750744 """
751745 Path variable with functions
@@ -755,7 +749,6 @@ def test_vlp_path_var_0(self):
755749 result = execute_query (query , "ontime_flights" )
756750 assert "error" not in result , f"Query failed: { result } "
757751
758- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
759752 def test_vlp_path_var_1 (self ):
760753 """
761754 Path variable with functions
@@ -765,7 +758,6 @@ def test_vlp_path_var_1(self):
765758 result = execute_query (query , "ontime_flights" )
766759 assert "error" not in result , f"Query failed: { result } "
767760
768- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
769761 def test_vlp_path_var_2 (self ):
770762 """
771763 Path variable with functions
@@ -966,7 +958,7 @@ def test_order_limit_2(self):
966958 result = execute_query (query , "ontime_flights" )
967959 assert "error" not in result , f"Query failed: { result } "
968960
969- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap " )
961+ @pytest .mark .skip (reason = "Invalid test: Airport has no 'airport' property (valid: code, city, state) " )
970962 def test_shortest_path_0 (self ):
971963 """
972964 Shortest path query
@@ -976,7 +968,7 @@ def test_shortest_path_0(self):
976968 result = execute_query (query , "ontime_flights" )
977969 assert "error" not in result , f"Query failed: { result } "
978970
979- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap " )
971+ @pytest .mark .skip (reason = "Invalid test: Airport has no 'airport' property (valid: code, city, state) " )
980972 def test_shortest_path_1 (self ):
981973 """
982974 Shortest path query
@@ -986,7 +978,6 @@ def test_shortest_path_1(self):
986978 result = execute_query (query , "ontime_flights" )
987979 assert "error" not in result , f"Query failed: { result } "
988980
989- @pytest .mark .xfail (reason = "Denormalized schema: node property resolution or VLP CTE gap" )
990981 def test_shortest_path_2 (self ):
991982 """
992983 Shortest path query
@@ -1182,7 +1173,6 @@ def test_vlp_exact_1(self):
11821173 result = execute_query (query , "social_polymorphic" )
11831174 assert "error" not in result , f"Query failed: { result } "
11841175
1185- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
11861176 def test_vlp_exact_2 (self ):
11871177 """
11881178 Variable-length path with exact hops
@@ -1192,7 +1182,6 @@ def test_vlp_exact_2(self):
11921182 result = execute_query (query , "social_polymorphic" )
11931183 assert "error" not in result , f"Query failed: { result } "
11941184
1195- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
11961185 def test_vlp_range_0 (self ):
11971186 """
11981187 Variable-length path with range
@@ -1202,7 +1191,6 @@ def test_vlp_range_0(self):
12021191 result = execute_query (query , "social_polymorphic" )
12031192 assert "error" not in result , f"Query failed: { result } "
12041193
1205- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
12061194 def test_vlp_range_1 (self ):
12071195 """
12081196 Variable-length path with range
@@ -1212,7 +1200,6 @@ def test_vlp_range_1(self):
12121200 result = execute_query (query , "social_polymorphic" )
12131201 assert "error" not in result , f"Query failed: { result } "
12141202
1215- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
12161203 def test_vlp_range_2 (self ):
12171204 """
12181205 Variable-length path with range
@@ -1222,7 +1209,6 @@ def test_vlp_range_2(self):
12221209 result = execute_query (query , "social_polymorphic" )
12231210 assert "error" not in result , f"Query failed: { result } "
12241211
1225- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
12261212 def test_vlp_path_var_0 (self ):
12271213 """
12281214 Path variable with functions
@@ -1232,7 +1218,6 @@ def test_vlp_path_var_0(self):
12321218 result = execute_query (query , "social_polymorphic" )
12331219 assert "error" not in result , f"Query failed: { result } "
12341220
1235- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
12361221 def test_vlp_path_var_1 (self ):
12371222 """
12381223 Path variable with functions
@@ -1242,7 +1227,6 @@ def test_vlp_path_var_1(self):
12421227 result = execute_query (query , "social_polymorphic" )
12431228 assert "error" not in result , f"Query failed: { result } "
12441229
1245- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
12461230 def test_vlp_path_var_2 (self ):
12471231 """
12481232 Path variable with functions
@@ -1441,7 +1425,6 @@ def test_order_limit_2(self):
14411425 result = execute_query (query , "social_polymorphic" )
14421426 assert "error" not in result , f"Query failed: { result } "
14431427
1444- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
14451428 def test_shortest_path_0 (self ):
14461429 """
14471430 Shortest path query
@@ -1451,7 +1434,6 @@ def test_shortest_path_0(self):
14511434 result = execute_query (query , "social_polymorphic" )
14521435 assert "error" not in result , f"Query failed: { result } "
14531436
1454- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
14551437 def test_shortest_path_1 (self ):
14561438 """
14571439 Shortest path query
@@ -1461,7 +1443,6 @@ def test_shortest_path_1(self):
14611443 result = execute_query (query , "social_polymorphic" )
14621444 assert "error" not in result , f"Query failed: { result } "
14631445
1464- @pytest .mark .xfail (reason = "Polymorphic schema: VLP or shortest path gap" )
14651446 def test_shortest_path_2 (self ):
14661447 """
14671448 Shortest path query
@@ -1642,7 +1623,7 @@ def test_multi_hop_2(self):
16421623 result = execute_query (query , "zeek_dns" )
16431624 assert "error" not in result , f"Query failed: { result } "
16441625
1645- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1626+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
16461627 def test_vlp_exact_0 (self ):
16471628 """
16481629 Variable-length path with exact hops
@@ -1652,7 +1633,7 @@ def test_vlp_exact_0(self):
16521633 result = execute_query (query , "zeek_dns" )
16531634 assert "error" not in result , f"Query failed: { result } "
16541635
1655- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1636+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
16561637 def test_vlp_exact_1 (self ):
16571638 """
16581639 Variable-length path with exact hops
@@ -1662,7 +1643,7 @@ def test_vlp_exact_1(self):
16621643 result = execute_query (query , "zeek_dns" )
16631644 assert "error" not in result , f"Query failed: { result } "
16641645
1665- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1646+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
16661647 def test_vlp_exact_2 (self ):
16671648 """
16681649 Variable-length path with exact hops
@@ -1672,7 +1653,7 @@ def test_vlp_exact_2(self):
16721653 result = execute_query (query , "zeek_dns" )
16731654 assert "error" not in result , f"Query failed: { result } "
16741655
1675- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1656+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
16761657 def test_vlp_range_0 (self ):
16771658 """
16781659 Variable-length path with range
@@ -1682,7 +1663,7 @@ def test_vlp_range_0(self):
16821663 result = execute_query (query , "zeek_dns" )
16831664 assert "error" not in result , f"Query failed: { result } "
16841665
1685- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1666+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
16861667 def test_vlp_range_1 (self ):
16871668 """
16881669 Variable-length path with range
@@ -1692,7 +1673,7 @@ def test_vlp_range_1(self):
16921673 result = execute_query (query , "zeek_dns" )
16931674 assert "error" not in result , f"Query failed: { result } "
16941675
1695- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1676+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
16961677 def test_vlp_range_2 (self ):
16971678 """
16981679 Variable-length path with range
@@ -1702,7 +1683,7 @@ def test_vlp_range_2(self):
17021683 result = execute_query (query , "zeek_dns" )
17031684 assert "error" not in result , f"Query failed: { result } "
17041685
1705- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1686+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
17061687 def test_vlp_path_var_0 (self ):
17071688 """
17081689 Path variable with functions
@@ -1712,7 +1693,7 @@ def test_vlp_path_var_0(self):
17121693 result = execute_query (query , "zeek_dns" )
17131694 assert "error" not in result , f"Query failed: { result } "
17141695
1715- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1696+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
17161697 def test_vlp_path_var_1 (self ):
17171698 """
17181699 Path variable with functions
@@ -1722,7 +1703,7 @@ def test_vlp_path_var_1(self):
17221703 result = execute_query (query , "zeek_dns" )
17231704 assert "error" not in result , f"Query failed: { result } "
17241705
1725- @pytest .mark .xfail (reason = "Coupled schema: VLP not supported on denormalized edge tables" )
1706+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
17261707 def test_vlp_path_var_2 (self ):
17271708 """
17281709 Path variable with functions
@@ -1924,7 +1905,7 @@ def test_order_limit_2(self):
19241905 result = execute_query (query , "zeek_dns" )
19251906 assert "error" not in result , f"Query failed: { result } "
19261907
1927- @pytest .mark .xfail (reason = "Coupled schema: VLP/shortestPath not supported on denormalized edge tables" )
1908+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
19281909 def test_shortest_path_0 (self ):
19291910 """
19301911 Shortest path query
@@ -1934,7 +1915,7 @@ def test_shortest_path_0(self):
19341915 result = execute_query (query , "zeek_dns" )
19351916 assert "error" not in result , f"Query failed: { result } "
19361917
1937- @pytest .mark .xfail (reason = "Coupled schema: VLP/shortestPath not supported on denormalized edge tables" )
1918+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
19381919 def test_shortest_path_1 (self ):
19391920 """
19401921 Shortest path query
@@ -1944,7 +1925,7 @@ def test_shortest_path_1(self):
19441925 result = execute_query (query , "zeek_dns" )
19451926 assert "error" not in result , f"Query failed: { result } "
19461927
1947- @pytest .mark .xfail (reason = "Coupled schema: VLP/shortestPath not supported on denormalized edge tables" )
1928+ @pytest .mark .xfail (reason = "Coupled schema: VLP on multi-relationship denormalized tables" )
19481929 def test_shortest_path_2 (self ):
19491930 """
19501931 Shortest path query
0 commit comments