Skip to content

Commit

Permalink
Run tests next Monday
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Aug 10, 2023
1 parent aa7ed7d commit e20e73d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/smoke-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,14 @@ jobs:
restore-keys: |
osm-${{ matrix.locations.name }}
- name: Run smoke tests
- name: Build graph tests
working-directory: smoke-tests
run: |
cd smoke-tests
make build-${{ matrix.locations.name }}
- name: Run smoke tests
working-directory: smoke-tests
run: |
make run-${{ matrix.locations.name }} &
# OTP needs a little while to start up so we sleep
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/opentripplanner/smoketest/SmokeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public class SmokeTest {
*/
public static LocalDate nextMonday() {
var today = LocalDate.now();
return today.with(TemporalAdjusters.next(DayOfWeek.THURSDAY));
return today.with(TemporalAdjusters.next(DayOfWeek.MONDAY));
}

public static void assertThatThereAreVehicleRentalStations() {
Expand Down

0 comments on commit e20e73d

Please sign in to comment.