From a80e81840e7649af6e4340257382540d9a1feb2b Mon Sep 17 00:00:00 2001 From: Hector Sanjuan Date: Mon, 26 Apr 2021 15:22:03 +0200 Subject: [PATCH] Attempt to enable running tests --- Makefile | 2 +- fs-repo-migrations/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0042233a..58b86415 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ clean.%: MIGRATION=$* clean.%: make -C $(MIGRATION) clean -test_go: $(shell ls -d fs-repo-*-to-* | sed -e 's/fs-repo/test_go.fs-repo/') +test_go: $(shell ls -d fs-repo-*-to-*/migration | sed -e 's/fs-repo/test_go.fs-repo/') @echo OK test_go.%: MIGRATION=$* diff --git a/fs-repo-migrations/main.go b/fs-repo-migrations/main.go index 28e4e824..6e494945 100644 --- a/fs-repo-migrations/main.go +++ b/fs-repo-migrations/main.go @@ -130,7 +130,7 @@ func latestRepoMigration(fetcher migrations.Fetcher) (int, error) { // request and calculate latest // // When searching for latest migration, start looking using this repo version - const currentVersion = 11 + const currentVersion = 12 ctx, cancel := context.WithTimeout(context.Background(), time.Minute) defer cancel()