Remove 5.20 build trigger from master branch - should only exist on release branches.

This commit is contained in:
Daniel Patterson 2018-12-14 11:53:48 -07:00
parent 81bc2f41a6
commit 520b7ebbb6
No known key found for this signature in database
GPG Key ID: 19C12BE1725A028B
2 changed files with 25 additions and 1 deletions

View File

@ -13,7 +13,6 @@ notifications:
branches:
only:
- master
- "5.20"
# enable building tags
- /^v\d+\.\d+(\.\d+)?(-\S*)?$/

View File

@ -183,3 +183,28 @@ Feature: Snap start/end point to the nearest way
| x | n | xf,xf |
| x | o | xg,xg |
| x | p | xh,xh |
Scenario: Weighted snapping
# Given the query options
# | snapping | weighted |
Given a grid size of 10 meters
Given the node map
"""
a b c
1 2 3 4
5 6 7 8d
9
0 e
"""
And the ways
| nodes |
| ab |
| bc |
| cd |
| de |
When I route I should get
| from | to | route |
| 1 | 0 | ab,bc,cd,de |
| 2 | 0 | bc,cd,de |