Skip to content

Commit

Permalink
Merge branch 'master' into feat/1605
Browse files Browse the repository at this point in the history
  • Loading branch information
cka-y authored Feb 14, 2024
2 parents baebf22 + 69b948e commit 0605e1d
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/end_to_end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ jobs:
needs: [ fetch-urls, pack-snapshot ]
# We use machines with more memory to run validation, as large feeds
# can consume too much heap for default machine instances (see #1304).
runs-on: gitrunners-ubuntu-2204-x64-4vcpu
runs-on: ubuntu-latest-4-cores
strategy:
matrix: ${{ fromJson(needs.fetch-urls.outputs.matrix) }}
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,24 +119,45 @@ static class RouteBothShortAndLongNameMissingNotice extends ValidationNotice {
*
* <p>Good examples:
*
* <pre>
* | `route_short_name`/`route_long_name` | Dataset |
* | ----------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
* | ["N"/"Judah"](https://www.sfmta.com/getting-around/transit/routes-stops/n-judah) | [Muni San Fransisco](https://storage.googleapis.com/storage/v1/b/mdb-latest/o/us-california-san-francisco-municipal-transportation-agency-sfmta-gtfs-50.zip?alt=media) |
* | ["6"/"ML King Jr Blvd"](https://trimet.org/schedules/r006.htm) | [Trimet Portland Streetcar](http://developer.trimet.org/schedule/gtfs.zip) |
* | ["55"/"Boulevard Saint Laurent"](https://www.stm.info/en/info/networks/bus/local/line-55-north) | [STM Montreal](https://storage.googleapis.com/storage/v1/b/mdb-latest/o/ca-quebec-societe-de-transport-de-montreal-gtfs-1221.zip?alt=media) |
* | ["1"/"Rangiora/Cashmere"](https://www.metroinfo.co.nz/timetables/1-rangiora-cashmere/) | [Metro Christchurch](https://storage.googleapis.com/storage/v1/b/mdb-latest/o/nz-christchurch-christchurch-metro-gtfs-1313.zip?alt=media) |
* </pre>
* <table>
* <tr>
* <th>route_short_name/route_long_name</th>
* <th>Dataset</th>
* </tr>
* <tr>
* <td>"N"/"Judah"</td>
* <td><a href="https://www.sfmta.com/getting-around/transit/routes-stops/n-judah">Muni San Fransisco</a></td>
* </tr>
* <tr>
* <td>"6"/"ML King Jr Blvd"</td>
* <td><a href="https://trimet.org/schedules/r006.htm">Trimet Portland Streetcar</a></td>
* </tr>
* <tr>
* <td>"55"/"Boulevard Saint Laurent"</td>
* <td><a href="https://www.stm.info/en/info/networks/bus/local/line-55-north">STM Montreal</a></td>
* </tr>
* <tr>
* <td>"1"/"Rangiora/Cashmere"</td>
* <td><a href="https://www.metroinfo.co.nz/timetables/1-rangiora-cashmere/">Metro Christchurch</a></td>
* </tr>
* </table>
*
* Bad examples:
* <p>Bad examples:
*
* <pre>
* | `route_short_name`/`route_long_name` |
* |-------------------------------------------|
* | "604"/"604" |
* | "14"/"Route 14" |
* | "2"/"Route 2: Bellows Falls In-Town" |
* </pre>
* <table>
* <tr>
* <th>route_short_name/route_long_name</th>
* </tr>
* <tr>
* <td>"604"/"604"</td>
* </tr>
* <tr>
* <td>"14"/"Route 14"</td>
* </tr>
* <tr>
* <td>"2"/"Route 2: Bellows Falls In-Town"</td>
* </tr>
* </table>
*/
@GtfsValidationNotice(
severity = WARNING,
Expand Down

0 comments on commit 0605e1d

Please sign in to comment.