From 45bd05b3465d53ca538c6065f8e5e39066ff2a5d Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Tue, 27 Aug 2024 09:09:46 -0500 Subject: [PATCH] Fixes Upstream CI tests --- tasks.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tasks.py b/tasks.py index 842b573..97123f7 100644 --- a/tasks.py +++ b/tasks.py @@ -315,3 +315,8 @@ def wait(context): def export(context): """Export compose configuration to `compose.yaml` file.""" context.run("docker compose convert > compose.yaml", env=_DOCKER_COMPOSE_ENV, pty=True) + + +@task +def check_migrations(context): + """Upstream CI test runs check-migration test, but pynautobot has no migration to be tested; Hence including to pass CI test"""